public PatientService(HelsiContext context, IMapper mapper, IAdditionalContactService additionalContactService) : base(context) { _mapper = mapper; _additionalContactService = additionalContactService; }
public HomeController(HelsiContext context) { _context = context; }
public BaseService(HelsiContext context) { _context = context; }
public AdditionalContactService(HelsiContext context, IMapper mapper) : base(context) { _mapper = mapper; }