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