Ejemplo n.º 1
0
 public IdentityService(JwtSettings jwtSettings, ApplicationContext context, UserManager <IdentityUser> userManager, IHttpContextAccessor accessor, IMedicalRepRepo usMedicalRepRepo)
 {
     _jwtSettings      = jwtSettings;
     _context          = context;
     _userManager      = userManager;
     _accessor         = accessor;
     _usMedicalRepRepo = usMedicalRepRepo;
 }
Ejemplo n.º 2
0
 public MedicalRepService(
     IUnitWork unitWork,
     IMedicalRepRepo repo,
     IWebHostEnvironment environment,
     IMapper mapper,
     IIdentityUser identityUser) : base(environment)
 {
     _unitWork     = unitWork;
     _repo         = repo;
     _mapper       = mapper;
     _identityUser = identityUser;
 }
 public MedicalRepEvaluationsHandlers(IMedicalRepRepo medicalRepRepo, IEvaluationRepo evaluationRepo)
 {
     _medicalRepRepo = medicalRepRepo;
     _evaluationRepo = evaluationRepo;
 }
Ejemplo n.º 4
0
 public MedicalRepReportHandlers(IMedicalRepRepo medicalRepRepo)
 {
     _medicalRepRepo = medicalRepRepo;
 }