示例#1
0
 public CustomerRateController(ICustomerRateBS CustomerRate, IConfiguration conf, IHostingEnvironment _env) : base(conf)
 {
     _conf = conf;
     cBS   = CustomerRate;
 }
示例#2
0
 public SalesCenterBS(RepoDB db, IDateBS date, ICustomerRateBS customerRate, IConfiguration conf) : base(db)
 {
     _conf = conf;
     dBS   = date;
     cBS   = customerRate;
 }