Пример #1
0
 public ReferenceDataRepository(
     ILogger logger,
     IPostcodes postcodes,
     ILARS lars,
     IOrganisations organisations,
     IFcsContext fcsContext,
     IULN ulnContext)
 {
     _logger        = logger;
     _postcodes     = postcodes;
     _lars          = lars;
     _organisations = organisations;
     _fcsContext    = fcsContext;
     _ulnContext    = ulnContext;
 }
Пример #2
0
 public OrganisationsController(IOrganisations tntMgr)
 {
     _tenantDataManager = tntMgr;
 }
 private OrganisationDataRetrievalService NewService(IOrganisations organisations = null)
 {
     return(new OrganisationDataRetrievalService(organisations));
 }
Пример #4
0
 public OrganisationsDataRetrievalService(IOrganisations organisations, ICache <IMessage> messageCache)
     : base(messageCache)
 {
     _organisations = organisations;
 }
Пример #5
0
 private OrganisationsDataRetrievalService NewService(IOrganisations organisations = null, ICache <IMessage> messageCache = null)
 {
     return(new OrganisationsDataRetrievalService(organisations, messageCache));
 }
 public OrganisationDataRetrievalService(IOrganisations organisations)
 {
     _organisations = organisations;
 }