Beispiel #1
0
 public EmployeeController(IEmployeeService _employeeService, IEmployeeTypeService _employeeTypeService, IPetService _petService, IEmployeePetService _employeePetService)
 {
     this._employeeService     = _employeeService;
     this._employeeTypeService = _employeeTypeService;
     this._petService          = _petService;
     this._employeePetService  = _employeePetService;
 }
Beispiel #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;
 }
Beispiel #3
0
 public EmployeeController(
     IEmployeeService employeeService,
     IGenderService genderService,
     IBranchService branchService,
     IEmployeeTypeService employeeTypeService,
     IUserHelper userHelper)
 {
     _employeeService     = employeeService;
     _genderService       = genderService;
     _branchService       = branchService;
     _employeeTypeService = employeeTypeService;
     _userHelper          = userHelper;
 }
 public CheckingController(IAccessTimesCountService accessTimesCountService, IDecentralizationService decentralizationService, IRoleService roleService, ISupplierService suplierService, IImportCouponDetailService importCouponDetailService, IImportCouponService importCouponService, IDiscountCodeService discountCodeService, IOrderService orderService, IQAService qAService, IProductService productService, IMemberService memberService, IEmployeeService employeeService, IEmployeeTypeService employeeTypeService)
 {
     _qAService                 = qAService;
     _productService            = productService;
     _memberService             = memberService;
     _employeeService           = employeeService;
     _employeeTypeService       = employeeTypeService;
     _orderService              = orderService;
     _discountCodeService       = discountCodeService;
     _importCouponService       = importCouponService;
     _importCouponDetailService = importCouponDetailService;
     _supplierService           = suplierService;
     _roleService               = roleService;
     _decentralizationService   = decentralizationService;
     _accessTimesCountService   = accessTimesCountService;
 }
 public EmployeesController(IEmployeeService employeeService, IEmployeeTypeService employeeTypeService, IBranchService branchService)
 {
     _employeeService     = employeeService;
     _employeeTypeService = employeeTypeService;
     _branchService       = branchService;
 }
 public EmployeeTypeController(IEmployeeTypeService employeeTypeService)
 {
     _employeeTypeService = employeeTypeService;
 }
Beispiel #7
0
 public EmployeesController()
 {
     _employeeService     = new EmployeeService();
     _companyService      = new CompanyService();
     _employeeTypeService = new EmployeeTypeService();
 }