Esempio n. 1
0
 public EPeopleController(IePeopleManager _IePeopleManager, IAdminDashboard _IAdminDashboard, IGuestUserRepository _IGuestUserRepository, ICommonMethod _ICommonMethod, IDepartment _IDepartment, IGuestUser _IGuestUser, IFillableFormManager _IFillableFormManager)
 {
     this._IePeopleManager      = _IePeopleManager;
     this._IGuestUserRepository = _IGuestUserRepository;
     this._ICommonMethod        = _ICommonMethod;
     this._IDepartment          = _IDepartment;
     this._IGuestUser           = _IGuestUser;
     this._IFillableFormManager = _IFillableFormManager;
 }
Esempio n. 2
0
 public HomeController(ITransactionService transactionService, IUserService userService, IAdminDashboard adminDashboardService)
 {
     this.transactionService    = transactionService ?? throw new System.ArgumentNullException(nameof(transactionService));
     this.userService           = userService ?? throw new System.ArgumentNullException(nameof(userService));
     this.adminDashboardService = adminDashboardService ?? throw new ArgumentNullException(nameof(adminDashboardService));
 }
Esempio n. 3
0
 public AdminDashboardController(IAdminDashboard _IAdminDashboard, IDepartment _IDepartment)
 {
     this._IAdminDashboard = _IAdminDashboard;
     this._IDepartment     = _IDepartment;
 }
Esempio n. 4
0
 public OrgChartController(IAdminDashboard _IAdminDashboard)
 {
     this._IAdminDashboard = _IAdminDashboard;
 }