public MessagesController(IMessageRepository repo, IBrokerRepository bRepo, IStaffProfileRepository sRepo, IKWTaskRepository repo2)
 {
     messageRepo = repo;
     brokerRepo  = bRepo;
     staffRepo   = sRepo;
     taskRepo    = repo2;
 }
 public InteractionsController(IInteractionsRepository repo, IBrokerRepository repo2, IStaffProfileRepository repo3, IKWTaskRepository repo4)
 {
     intRepo    = repo;
     brokerRepo = repo2;
     staffRepo  = repo3;
     taskRepo   = repo4;
 }
Beispiel #3
0
 public AdminController(IInteractionsRepository repo, IStaffProfileRepository repo2, UserManager <StaffUser> usrMgr, IBrokerRepository repo3, IKWTaskRepository repo4)
 {
     intRepo     = repo;
     staffRepo   = repo2;
     userManager = usrMgr;
     brokerRepo  = repo3;
     taskRepo    = repo4;
 }
Beispiel #4
0
 public HomeController(UserManager <StaffUser> usrMgr, IStaffProfileRepository repo, IKWTaskRepository repo2, IInteractionsRepository repo3, IBrokerRepository repo4)
 {
     staffProfRepo = repo;
     userManager   = usrMgr;
     taskRepo      = repo2;
     intRepo       = repo3;
     brokerRepo    = repo4;
 }
Beispiel #5
0
 public KWTasksController(IKWTaskRepository repo, IStaffProfileRepository repo2, IInteractionsRepository repo3)
 {
     taskRepo  = repo;
     staffRepo = repo2;
     intRepo   = repo3;
 }
Beispiel #6
0
 public SettingsController(IStaffProfileRepository repo, UserManager <StaffUser> usrMgr, IKWTaskRepository repo2)
 {
     profileRepo = repo;
     userManager = usrMgr;
     taskRepo    = repo2;
 }
Beispiel #7
0
 public BrokersController(IBrokerRepository repo, IKWTaskRepository repo2)
 {
     brokerRepo = repo;
     taskRepo   = repo2;
 }