示例#1
0
 public InvoiceService(LngDbContext context, ICustomerService customerService, ILogService logService, IHostingEnvironment hostingEnvironment)
 {
     _db = context;
     _customerService    = customerService;
     _logService         = logService;
     _hostingEnvironment = hostingEnvironment;
 }
示例#2
0
 public BillSheetService(LngDbContext context)
 {
     _db = context;
 }
示例#3
0
 public ConfigurationService(LngDbContext db)
 {
     _db = db;
 }
示例#4
0
 public EmployeeService(LngDbContext context)
 {
     _db = context;
 }
示例#5
0
 public CustomerService(LngDbContext context)
 {
     _db = context;
 }
示例#6
0
 public PriceListService(LngDbContext context)
 {
     _db = context;
 }
示例#7
0
 public EventService(LngDbContext context)
 {
     _db = context;
 }
示例#8
0
 public ItemService(LngDbContext db)
 {
     _db = db;
 }
示例#9
0
 public LogService(LngDbContext context, IConfiguration config)
 {
     _db     = context;
     _config = config;
 }