コード例 #1
0
ファイル: HomeController.cs プロジェクト: hoangec/ECHRMS
 public HomeController(UserManager<ApplicationUser> UserManager,ICompanyService CompanyService,IEmployeeService EmployeeService,IReportService ReportService,IExperienceService experienceService, ITerminateService terminateService, IPositionService positionService)
 {
     this.companyService = CompanyService;
     this.employeeService = EmployeeService;
     this.terminateService = terminateService;
     this.reportService = ReportService;
     this.experienceService = experienceService;
     this.positionService = positionService;
     this.userManager = UserManager;
 }
コード例 #2
0
ファイル: EmployeeController.cs プロジェクト: hoangec/ECHRMS
 public EmployeeController(UserManager<ApplicationUser> UserManager, IExperienceService experienceService, ISalaryService salaryService, IEmployeeService employeeService, ICompanyService companyService, ITerminateService terminateService, IPositionService positionService, IContractService contractService, IInsuranceService insuranceService)
 {
     this.employeeService = employeeService;
     this.companyService = companyService;
     this.terminateService = terminateService;
     this.positionService = positionService;
     this.contractService = contractService;
     this.insuranceService = insuranceService;
     this.salaryService = salaryService;
     this.experienceService = experienceService;
     this.userManager = UserManager;
 }