public PlantsController(GrowthDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
Exemple #2
0
 public UserService(GrowthDbContext context)
 {
     _context = context;
 }
 public OrdersController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public FeaturesController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #5
0
 public ImagesController(IHostingEnvironment host, GrowthDbContext context, IMapper mapper)
 {
     Host     = host;
     _mapper  = mapper;
     _context = context;
 }
 public SpeciesController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }