Пример #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;
 }
 private LARSFrameworkDataRetrievalService NewService(ILARS lars = null, ICache <IMessage> messageCache = null)
 {
     return(new LARSFrameworkDataRetrievalService(lars, messageCache));
 }
 private LARSLearningDeliveryDataRetrievalService NewService(ILARS lars = null, ICache <IMessage> messageCache = null)
 {
     return(new LARSLearningDeliveryDataRetrievalService(lars, messageCache));
 }
 public LARSLearningDeliveryDataRetrievalService(ILARS lars, ICache <IMessage> messageCache)
     : base(messageCache)
 {
     _lars = lars;
 }
 public LARSFrameworkDataRetrievalService(ILARS lars, ICache <IMessage> messagerCache)
     : base(messagerCache)
 {
     _lars = lars;
 }
Пример #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LARSStandardValidityDataRetrievalService"/> class.
 /// </summary>
 /// <param name="lars">The lars (EF) object.</param>
 public LARSStandardValidityDataRetrievalService(ILARS lars)
 {
     _lars = lars;
 }
 private LARSDataRetrievalService NewService(ILARS lars = null)
 {
     return(new LARSDataRetrievalService(lars));
 }
 public LARSDataRetrievalService(ILARS lars)
 {
     _lars = lars;
 }
 public LARSStandardDataRetrievalService(ILARS lars, ICache <IMessage> messageCache)
     : base(messageCache)
 {
     _lars = lars;
 }