public CarriersService(OilsProDbContext context) { _context = context; }
public SuppliersService(OilsProDbContext context) { _context = context; }
public ProductsService(OilsProDbContext context) { _context = context; }
public OrdersService(OilsProDbContext context) { _context = context; }
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; }
public ReceiverService(OilsProDbContext context) { _context = context; }
public SeedService(OilsProDbContext context) { _context = context; }
public HomeController(IDataSeeder seeder, IOrdersService ordersService, OilsProDbContext context) { _seeder = seeder; _ordersService = ordersService; _context = context; }
public CarriersVehiclesViewComponent(OilsProDbContext context) { _context = context; }