示例#1
0
 public ProductManager(IUnitOfWork unitOfWork, IReferenceExcludable excludable, IProductService productService)
 {
     _excludable     = Has.NotNull(excludable);
     _productService = Has.NotNull(productService);
     _unitOfWork     = Has.NotNull(unitOfWork);
 }
示例#2
0
 public EmployeeManager(IUnitOfWork unitOfWork, IReferenceExcludable excludable, IEmployeeService employeeService)
 {
     _excludable      = Has.NotNull(excludable);
     _employeeService = Has.NotNull(employeeService);
     _unitOfWork      = Has.NotNull(unitOfWork);
 }
 public StudentManager(IUnitOfWork unitOfWork, IReferenceExcludable excludable, IStudentService studentService)
 {
     _excludable     = Has.NotNull(excludable);
     _studentService = Has.NotNull(studentService);
     _unitOfWork     = Has.NotNull(unitOfWork);
 }
示例#4
0
 public CustomerManager(IUnitOfWork unitOfWork, IReferenceExcludable excludable, ICustomerService customerService)
 {
     _excludable      = Has.NotNull(excludable);
     _customerService = Has.NotNull(customerService);
     _unitOfWork      = Has.NotNull(unitOfWork);
 }