public InventoryFeeCalculator(string path)
 {
     _context = new FBADbContext();
     _path    = path;
     _excel   = new Application();
     _wb      = _excel.Workbooks.Open(_path);
 }
示例#2
0
 public ChargeMethodController()
 {
     _context = new FBADbContext();
 }
 public ChargeTemplateController()
 {
     _context  = new FBADbContext();
     _context2 = new ApplicationDbContext();
 }
 //构造器
 public InventoryFeeCalculator()
 {
     _context = new FBADbContext();
 }