Beispiel #1
0
 public ProjectManagerController(IOrderRepository repository, RoleManager <IdentityRole> roleManager, UserManager <IdentityUser> userManager, IUsersWalletRepository usersWalletRepository)
 {
     _repository            = repository;
     _roleManager           = roleManager;
     _userManager           = userManager;
     _usersWalletRepository = usersWalletRepository;
 }
Beispiel #2
0
 public FrilanserController(IOrderRepository repository, RoleManager <IdentityRole> roleManager, UserManager <IdentityUser> userManager, IHostingEnvironment appEnvironment, IUsersWalletRepository usersWalletRepository)
 {
     _repository            = repository;
     _roleManager           = roleManager;
     _userManager           = userManager;
     _appEnvironment        = appEnvironment;
     _usersWalletRepository = usersWalletRepository;
 }
Beispiel #3
0
 public ClientsController(IOrderRepository repository, RoleManager <IdentityRole> roleManager, UserManager <IdentityUser> userManager, IHostingEnvironment appEnvironment, IHubContext <NotificationsHub> notifHubContext, IUsersWalletRepository usersWalletRepository)
 {
     _repository            = repository;
     _roleManager           = roleManager;
     _userManager           = userManager;
     _appEnvironment        = appEnvironment;
     _notifHubContext       = notifHubContext;
     _usersWalletRepository = usersWalletRepository;
 }