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;
 }
Exemple #2
0
 public UIDViewController(IUIDViewService uidService, ICommonService commonService)
 {
     this.uidService    = uidService;
     this.commonService = commonService;
 }