public AuthenticationService(IDb db, ExceptionLogger exceptionLogger,
                              TableAutoMapper autoMapper,
                              IConfiguration configuration)
 {
     this.db              = db;
     this.configuration   = configuration;
     this.autoMapper      = autoMapper;
     this.exceptionLogger = exceptionLogger;
     this.cacheManager    = CacheManager.GetInstance();
 }
Beispiel #2
0
 public WeatherForecastController(APIManagerModal aPIManagerModal, IDb db, TableAutoMapper tableAutoMapper, CurrentSession currentSession)
 {
     this.aPIManagerModal = aPIManagerModal;
     this.tableAutoMapper = tableAutoMapper;
     this.db = db;
 }