Ejemplo n.º 1
0
 public CaseNotesUseCase(IHistoricalDataGateway historicalSocialCareGateway)
 {
     _historicalDataGateway = historicalSocialCareGateway;
 }
 public VisitsUseCase(IHistoricalDataGateway historicalSocialCareGateway)
 {
     _historicalDataGateway = historicalSocialCareGateway;
 }
 public ProcessDataGateway(ISccvDbContext sccvDbContext, IHistoricalDataGateway historicalSocialCareGateway)
 {
     _sccvDbContext         = sccvDbContext;
     _historicalDataGateway = historicalSocialCareGateway;
 }
 public GetVisitByVisitIdUseCase(IHistoricalDataGateway historicalSocialCareGateway)
 {
     _historicalDataGateway = historicalSocialCareGateway;
 }
 public void Setup()
 {
     _historicalDataGateway = new HistoricalDataGateway(HistoricalSocialCareContext);
 }