Пример #1
0
 public ShowController(ITrackingApi trackingApi, IImageApi imageApi, IDatabase database)
 {
     _trackingApi = trackingApi;
     _database    = database;
     _imageApi    = imageApi;
 }
Пример #2
0
 public SaveCategoryHandler(IMapper mapper, IDbContext context, IImageApi imageApi)
 {
     _mapper   = mapper;
     _context  = context;
     _imageApi = imageApi;
 }
Пример #3
0
 public SavePartnersHandler(IMapper mapper, IDbContext context, IImageApi imageApi)
 {
     _mapper   = mapper;
     _context  = context;
     _imageApi = imageApi;
 }
 public SaveCertificatesHandler(IMapper mapper, IDbContext context, IImageApi imageApi)
 {
     _mapper   = mapper;
     _context  = context;
     _imageApi = imageApi;
 }
Пример #5
0
 public ImagesController(IImageApi imageApi, IDatabase database)
 {
     _imageApi = imageApi;
     _database = database;
 }