public DependentDropdownViewComponent(OilsDbContext context)
 {
     _context = context;
 }
 public NomenclaturesServices(OilsDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
示例#3
0
 public OrdersService(OilsDbContext context)
 {
     _context = context;
 }
示例#4
0
 public SeedService(OilsDbContext context)
 {
     _context = context;
 }
示例#5
0
 public ReceiverService(OilsDbContext context)
 {
     _context = context;
 }
示例#6
0
 public HomeController(IDataSeeder seeder, IOrdersService ordersService, OilsDbContext context)
 {
     _seeder        = seeder;
     _ordersService = ordersService;
     _context       = context;
 }
示例#7
0
 public ProductsService(OilsDbContext context)
 {
     _context = context;
 }