Exemplo n.º 1
0
 public RelationsController(UserManager <User> userManager, IAdminClassService classification, IAdminVersionService versions, IAdminItemsService items)
 {
     this.classification = classification;
     this.versions       = versions;
     this.items          = items;
     this.userManager    = userManager;
 }
Exemplo n.º 2
0
 public ClassClientController(UserManager <User> userManager, IAdminClassService classification, IAdminItemsService items, IAdminLinksService links, IManageFilesService files, IAdminVersionService versions)
 {
     this.classification = classification;
     this.userManager    = userManager;
     this.items          = items;
     this.links          = links;
     this.files          = files;
     this.versions       = versions;
 }
Exemplo n.º 3
0
 public UsersController(UserManager <User> userManager,
                        SignInManager <User> _signInManager,
                        RoleManager <IdentityRole> roleManager,
                        IAdminUserService users,
                        IDepartmentsService departments,
                        IAdminClassService classification)
 {
     this.classification = classification;
     this._departments   = departments;
     this.userManager    = userManager;
     this.roleManager    = roleManager;
     this.users          = users;
     this.signInManager  = _signInManager;
 }
Exemplo n.º 4
0
 public ClassController(UserManager <User> userManager, IAdminClassService classification)
 {
     this.classification = classification;
     this.userManager    = userManager;
 }