public CustomerService(ICustomerRepository customerRepository, IEmployeeTypeRepository employeeTypeRepository, ICustomerKeysService customerKeysService, IUnitOfWork unitOfWork)
 {
     this.customerRepository     = customerRepository;
     this.customerKeysService    = customerKeysService;
     this.unitOfWork             = unitOfWork;
     this.employeeTypeRepository = employeeTypeRepository;
 }
Example #2
0
 public CustomerController(IPetService _petService, ICustomerKeysService _customerKeysService, ICustomerService _customerService, IEmployeeTypeService _employeeTypeService, ICustomerPetService _customerPetService)
 {
     this._petService          = _petService;
     this._customerService     = _customerService;
     this._employeeTypeService = _employeeTypeService;
     this._customerPetService  = _customerPetService;
     this._customerKeysService = _customerKeysService;
 }