コード例 #1
0
 public IndexModel(IBusinessService businessService, IBranchItemService branchItemService, IEmployeeItemService employeeItemService, IConfiguration config)
 {
     _businessService     = businessService;
     _branchItemService   = branchItemService;
     _employeeItemService = employeeItemService;
     _fileSizeLimit       = config.GetValue <long>("FileSizeLimit");
 }
コード例 #2
0
 public BusinessHomeModel(IBranchService branchService, IBusinessService businessService, IBranchItemService branchItemService, IEmployeeItemService employeeItemService)
 {
     this.branchService       = branchService;
     this.businessService     = businessService;
     this.branchItemService   = branchItemService;
     this.employeeItemService = employeeItemService;
 }
コード例 #3
0
 public BranchHomeModel(IBranchItemService branchItemService, IBranchService branchService)
 {
     this.branchItemService = branchItemService;
     this.branchService     = branchService;
 }