public CompanyBranchesController(ICompanyBranchesService _companyBranchesService, IUserPriviligeBranchesService _userPriviligeBranService, IBillMasterService billMasterService, IDepartmentService departmentService, ICompanyStoresService companyStoresService, ICustomersService customersService, IUserLogFileService userLogFileService)
 {
     this.companyBranchesService   = _companyBranchesService;
     this.userPriviligeBranService = _userPriviligeBranService;
     this.billMasterService        = billMasterService;
     this.departmentService        = departmentService;
     this.companyStoresService     = companyStoresService;
     this.customersService         = customersService;
     this.userLogFileService       = userLogFileService;
 }
Exemplo n.º 2
0
 public UserController(IUserService userService, ICommonService commonService,
                       IUIDViewService uidViewService,
                       IUserPriviligeBranchesService userPriviligeBranService,
                       ICompanyBranchesService companyBranchesService,
                       IUserLogFileService _userLogFileService)
 {
     this.commonservice            = commonService;
     this.userService              = userService;
     this.uidViewService           = uidViewService;
     this.userPriviligeBranService = userPriviligeBranService;
     this.companyBranchesService   = companyBranchesService;
     this._userLogFileService      = _userLogFileService;
 }
Exemplo n.º 3
0
 public UserPriviligeBranchesController(IUserPriviligeBranchesService _uPrivBranServices, IUserLogFileService _userLogFileService)
 {
     uPrivBranServices  = _uPrivBranServices;
     userLogFileService = _userLogFileService;
 }