コード例 #1
0
ファイル: CreatePayment.cs プロジェクト: mexx0312/Sallary
 public CreatePayment(PaymentService paymentService, EmployeeService employeeService)
 {
     PaymentService = paymentService;
     EmployeeService = employeeService;
 }
コード例 #2
0
ファイル: AllEmployees.cs プロジェクト: mexx0312/Sallary
 public AllEmployees(EmployeeService employeeService)
 {
     EmployeeService = employeeService;
 }
コード例 #3
0
ファイル: ShowPayments.cs プロジェクト: mexx0312/Sallary
 public ShowPayments(EmployeeService employeeService, PaymentService paymentService, TimesheetService timesheetService)
 {
     EmployeeService = employeeService;
     PaymentService = paymentService;
     TimesheetService = timesheetService;
 }
コード例 #4
0
ファイル: CreateTimesheet.cs プロジェクト: mexx0312/Sallary
 public CreateTimesheet(EmployeeService employeeService, TimesheetService timesheetService)
 {
     EmployeeService = employeeService;
     TimesheetService = timesheetService;
 }
コード例 #5
0
ファイル: CreateSale.cs プロジェクト: mexx0312/Sallary
 public CreateSale(EmployeeService employeeService, SaleService saleService)
 {
     EmployeeService = employeeService;
     SaleService = saleService;
 }
コード例 #6
0
ファイル: CreateAward.cs プロジェクト: mexx0312/Sallary
 public CreateAward(AwardService awardService, EmployeeService employeeService)
 {
     AwardService = awardService;
     EmployeeService = employeeService;
 }
コード例 #7
0
ファイル: SallaryView.cs プロジェクト: mexx0312/Sallary
 public SallaryView(IRepository<Employee> emplyeeRepository, IRepository<Timesheet> timesheetRepository)
 {
     EmployeeService = new EmployeeService(emplyeeRepository);
     PaymentService = new PaymentService(emplyeeRepository, timesheetRepository);
 }