Ejemplo n.º 1
0
 public PatientService(HelsiContext context,
                       IMapper mapper,
                       IAdditionalContactService additionalContactService) : base(context)
 {
     _mapper = mapper;
     _additionalContactService = additionalContactService;
 }
Ejemplo n.º 2
0
 public HomeController(HelsiContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public BaseService(HelsiContext context)
 {
     _context = context;
 }
 public AdditionalContactService(HelsiContext context, IMapper mapper) : base(context)
 {
     _mapper = mapper;
 }