Ejemplo n.º 1
0
 public UserRegisterService(
     SystemMessagesService systemMessagesService,
     TokenAuthService tokenAuthService,
     DrrrDbContext dbContext)
 {
     _msg = systemMessagesService;
     _tokenAuthService = tokenAuthService;
     _dbContext        = dbContext;
 }
Ejemplo n.º 2
0
 public UserProfileService(
     DrrrDbContext dbContext,
     SystemMessagesService systemMessagesService,
     TokenAuthService tokenAuthService,
     ImageService imageService,
     IConfiguration configuration)
 {
     _dbContext        = dbContext;
     _tokenAuthService = tokenAuthService;
     _imageService     = imageService;
     _avatarsDirectory = configuration["Resources:Avatars"];
 }