public CarriersService(OilsProDbContext context)
 {
     _context = context;
 }
 public SuppliersService(OilsProDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public ProductsService(OilsProDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public OrdersService(OilsProDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public NomenclaturesServices(OilsProDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ReceiversAddressesViewComponent(OilsProDbContext context)
 {
     _context = context;
 }
 public CarriersDriversViewComponent(OilsProDbContext context)
 {
     _context = context;
 }
 public DeliveriesService(OilsProDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public ReceiverService(OilsProDbContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public SeedService(OilsProDbContext context)
 {
     _context = context;
 }
Beispiel #11
0
 public HomeController(IDataSeeder seeder, IOrdersService ordersService, OilsProDbContext context)
 {
     _seeder        = seeder;
     _ordersService = ordersService;
     _context       = context;
 }
Beispiel #12
0
 public CarriersVehiclesViewComponent(OilsProDbContext context)
 {
     _context = context;
 }