public SeedController(IImageGalleryRepository imageGalleryRepository) { _imageGalleryRepository = imageGalleryRepository; }
public BusinessLayers(IOptions <Settings> settings, IImageGalleryRepository imageRepository) { _imageRepository = imageRepository; _context = new SkillContext <ImageGallery>(settings); }
public ImageGalleryService(IImageGalleryRepository repository, IDataMapper dataMapper) : base(repository, dataMapper) { }
public BusinessLayers(IOptions <Settings> settings) { _imageRepository = new ImageGalleryRepository(settings); }