Beispiel #1
0
 public ReligionService(
     IERPUnitOfWork context,
     IMemoryCachingService memoryCachingService,
     ILogger <ReligionService> logger,
     IHttpContextAccessor httpContext)
 {
     _context = context;
     _logger  = logger;
     _memoryCachingService = memoryCachingService;
     base._httpContext     = httpContext;
 }
Beispiel #2
0
 public EmployeeWorkingStatusService(
     IERPUnitOfWork context,
     IMemoryCachingService memoryCachingService,
     ILogger <EmployeeWorkingStatusService> logger,
     IHttpContextAccessor httpContext)
 {
     _context = context;
     _memoryCachingService = memoryCachingService;
     _logger           = logger;
     base._httpContext = httpContext;
 }
 public ProfessionalQualificationService(
     IERPUnitOfWork context,
     IMemoryCachingService memoryCachingService,
     ILogger <ProfessionalQualificationService> logger,
     IHttpContextAccessor httpContext)
 {
     _context = context;
     _logger  = logger;
     _memoryCachingService = memoryCachingService;
     base._httpContext     = httpContext;
 }
Beispiel #4
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, IMemoryCachingService cachingService)
 {
     _logger         = logger;
     _cachingService = cachingService;
 }