public static void Main()
var localImageStoragePath = "a";
c.Register<ISqlConnection, TsqlConnection>();
c.Register<IImageService, ProfileImageService>(
Made.Of(() => new ProfileImageService(
Arg.Of<ISqlConnection>(),
var imgService = c.Resolve<IImageService>();
Console.WriteLine(imgService);
public interface IImageService {}
public class ProfileImageService: IImageService
public ProfileImageService(ISqlConnection conn, string a, string b) {}
public interface ISqlConnection {}
public class TsqlConnection : ISqlConnection {}