Beispiel #1
0
 public EmployeeController(IUserAuthenticationService auth,
                           IEmployeePaymentService empPayService,
                           IListingService listingService) : base(auth)
 {
     EmployeePaymentService = empPayService;
     ListingService         = listingService;
 }
Beispiel #2
0
 public Employee(IUserAuthenticationService auth,
                 IEmployeePaymentService empService) : base(auth)
 {
     EmployeeService = empService;
 }
Beispiel #3
0
 public Payments(IUserAuthenticationService auth,
                 IEmployeePaymentService paymentService) : base(auth)
 {
     PaymentService = paymentService;
 }