Ejemplo n.º 1
0
 public UserController(RBTCreditControl_Context context, Intranet_DBContext _context_Intra, ICacheManager <User> CacheManager, IErrLogService LogService)
 {
     _context       = context;
     context_Intra  = _context_Intra;
     _CacheManager  = CacheManager;
     _ErrLogService = LogService;
 }
Ejemplo n.º 2
0
        public BackOfficeController(RBTCreditControl_Context context, ICacheManager <User> CacheManager, IErrLogService LogService)
        {
            _context = context;

            _CacheManager  = CacheManager;
            _ErrLogService = LogService;
        }
Ejemplo n.º 3
0
 public async Task Invoke(HttpContext context, IErrLogService LogService /* other dependencies */)
 {
     try
     {
         _LogService = LogService;
         await next(context);
     }
     catch (Exception ex)
     {
         await HandleExceptionAsync(context, ex);
     }
 }
 public CorporateActionController(RBTCreditControl_Context context, ICacheManager <User> cache, IErrLogService LogService)
 {
     _context       = context;
     _cache         = cache;
     _ErrLogService = LogService;
 }
Ejemplo n.º 5
0
 public FollowUpController(RBTCreditControl_Context context, ICacheManager <User> cache, IErrLogService LogService)
 {
     _context       = context;
     _cache         = cache;
     _ErrLogService = LogService;
 }
Ejemplo n.º 6
0
 public LocationMasterController(RBTCreditControl_Context context, IErrLogService LogService)
 {
     _context       = context;
     _ErrLogService = LogService;
 }