public UsersAdminService(
     TeachTheChildDbContext dbContext,
     UserManager <User> userManager,
     RoleManager <IdentityRole> roleManager,
     IMapper mapper)
 {
     this.dbContext   = dbContext;
     this.userManager = userManager;
     this.roleManager = roleManager;
     this.mapper      = mapper;
 }
Exemple #2
0
 public VideosService(TeachTheChildDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemple #3
0
 public UsersService(TeachTheChildDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemple #4
0
 public LanguagesService(TeachTheChildDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public VideosModeratorService(TeachTheChildDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Exemple #6
0
 public DownloadMaterialsService(TeachTheChildDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemple #7
0
 public ArticlesService(TeachTheChildDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
 public DownloadMaterialsModeratorService(TeachTheChildDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
 public CountriesService(TeachTheChildDbContext dbContext)
 {
     this.dbContext = dbContext;
 }