public NotificationService(CoronaVirusContext context)
 {
     _context = context;
 }
 public InfectedService(IMapper mapper, CoronaVirusContext context, IUserService userService)
 {
     _mapper      = mapper;
     _context     = context;
     _userService = userService;
 }
Esempio n. 3
0
 public UserService(CoronaVirusContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }