Пример #1
0
 public PlantsController(GrowthDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
Пример #2
0
 public UserService(GrowthDbContext context)
 {
     _context = context;
 }
Пример #3
0
 public OrdersController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #4
0
 public FeaturesController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #5
0
 public ImagesController(IHostingEnvironment host, GrowthDbContext context, IMapper mapper)
 {
     Host     = host;
     _mapper  = mapper;
     _context = context;
 }
Пример #6
0
 public SpeciesController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }