public UserExpenseController(IUserExpenseManagement userExpenseManagement, IDepartmentManagement departmentManagement, ICompanyManagement companyManagement, IUserAllocationManagement userAllocationManagement, IUserAllocationBillingManagement userAllocationBillingManagement)
 {
     this.userExpenseManagement           = userExpenseManagement;
     this.departmentManagement            = departmentManagement;
     this.companyManagement               = companyManagement;
     this.userAllocationManagement        = userAllocationManagement;
     this.userAllocationBillingManagement = userAllocationBillingManagement;
 }
Esempio n. 2
0
 public UserController(IUserPermissionManagement userPermissionManagement, IDepartmentManagement departmentManagement, IUserDepartmentManagement userdepartmentManagement, IRequisitionManagement requisitionManagement, IUserAllocationManagement userAllocationManagement)
 {
     this.userPermissionManagement = userPermissionManagement;
     this.departmentManagement     = departmentManagement;
     this.userdepartmentManagement = userdepartmentManagement;
     this.requisitionManagement    = requisitionManagement;
     this.userAllocationManagement = userAllocationManagement;
 }
        public UserAllocationController(IRequisitionManagement requisitionManagement, IUserAllocationManagement userAllocationManagement, IRequisitionApprovalManagement requisitionApprovalManagement, IUserManagement userManagement, IUserDepartmentManagement userdepartmentManagement, IDepartmentManagement departmentManagement)
        {
            this.requisitionManagement         = requisitionManagement;
            this.userAllocationManagement      = userAllocationManagement;
            this.requisitionApprovalManagement = requisitionApprovalManagement;
            this.userManagement = userManagement;

            this.userdepartmentManagement = userdepartmentManagement;
            this.departmentManagement     = departmentManagement;
        }