예제 #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;
 }