Ejemplo n.º 1
0
 public ReportService(ApplicationDbContext dbContext,
                      ICachesService cacheService,
                      UserManager <ApplicationUser> userManager,
                      IEmailSender emailSender,
                      ViewHelper viewHelper) : base(dbContext, cacheService)
 {
     _identityUserManager = userManager;
     _emailSender         = emailSender;
     _viewHelper          = viewHelper;
 }
Ejemplo n.º 2
0
 public RolesService(ApplicationDbContext dbContext, ICachesService cacheService) : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 3
0
 public CountriesService(ApplicationDbContext dbContext, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 4
0
 public MuscularGroupsService(ApplicationDbContext dbContext, ICachesService cacheService) : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 5
0
 public UsersService(ApplicationDbContext dbContext, IUserRolesService userRolesService, IRolesService rolesService, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 6
0
 public MusclesService(ApplicationDbContext dbContext, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 7
0
 public TrainingExercisesService(ApplicationDbContext dbContext, ICachesService cacheService) : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 8
0
 public BodyExercisesService(ApplicationDbContext dbContext, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 9
0
 public BodyReportService(ApplicationDbContext dbContext, ICachesService cacheService)
 {
     _dbContext    = dbContext;
     _cacheService = cacheService;
 }
Ejemplo n.º 10
0
 public UserInfosService(ApplicationDbContext dbContext, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 11
0
 public TranslationsService(ApplicationDbContext dbContext, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 12
0
 public TrainingWeeksService(ApplicationDbContext dbContext, ICachesService cacheService)
     : base(dbContext, cacheService)
 {
 }
Ejemplo n.º 13
0
 public UsersService(ApplicationDbContext dbContext, IUserRolesService userRolesService, IRolesService rolesService, ICachesService cacheService) : base(dbContext, cacheService)
 {
 }