Exemplo n.º 1
0
 public PlantsController(GrowthDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
Exemplo n.º 2
0
 public UserService(GrowthDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public OrdersController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public FeaturesController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public ImagesController(IHostingEnvironment host, GrowthDbContext context, IMapper mapper)
 {
     Host     = host;
     _mapper  = mapper;
     _context = context;
 }
Exemplo n.º 6
0
 public SpeciesController(GrowthDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }