Beispiel #1
0
 public FastReportController(IHRORGBll hrOrgBll, ISysOperatorBll sysOperatorBll, IEmployeeBll employeeBll, IBranchBll branchBll)
 {
     this.sysOperatorBll = sysOperatorBll;
     this.employeeBll    = employeeBll;
     this.hrOrgBll       = hrOrgBll;
     this.branchBll      = branchBll;
 }
 public SystemController(ISystemBll systemBll, IEmployeeBll employeeBll, /* ISupplierBll supplierBll, ISupplierGroupBll supplierGroupBll,
                                                                          * ISysOperaterSupplierBll operaterSupplierBll,*/ISysOperatorBll operatorBll)
 {
     this.employeeBll = employeeBll;
     this.systemBll   = systemBll;
     //this.supplierBll = supplierBll;
     //this.supplierGroupBll = supplierGroupBll;
     //this.operaterSupplierBll = operaterSupplierBll;
     this.operatorBll = operatorBll;
 }
Beispiel #3
0
 /// <summary>
 ///  Initializes a new instance of the <see cref="RegisterController" /> class.
 /// </summary>
 /// <param name="employee"></param>
 public EmployeeController(IEmployeeBll employee)
 {
     _employee = employee;
 }
Beispiel #4
0
 public EmployeeController(IEmployeeBll theEmployeeBll)
 {
     employeeBll = theEmployeeBll;
 }
 public EmployeeController(IEmployeeBll employeeBll)
 {
     _employeeBll = employeeBll;
 }