/// <summary>
 /// AppUser Data Service constructor
 /// </summary>
 /// <param name="log">Logger For Service</param>
 /// <param name="logContext">Logger For Context</param>
 public AppUserDataService(IAccessConnectionString connection, ILogger <AppUserDataService> log, ILogger <StoreContext> logContext)
 {
     this._logContext = logContext;
     this._log        = log;
     this._connection = connection;
 }
Exemple #2
0
 public StoreContext(IAccessConnectionString accessConnectionString, ILogger <StoreContext> log)
 {
     _accessConnectionString = accessConnectionString;
     _log = log;
 }
Exemple #3
0
 /// <summary>
 /// EstimationLog Data Service constructor
 /// </summary>
 /// <param name="log">Logger For Service</param>
 /// <param name="logContext">Logger For Context</param>
 public EstimationLogsDataService(IAccessConnectionString connection, ILogger <EstimationLogsDataService> log, ILogger <StoreContext> logContext)
 {
     this._logContext = logContext;
     this._log        = log;
     this._connection = connection;
 }