public LogExceptionFilter()
 {
     this._ILogException = logGenerator.CreateInstance;
 }
Esempio n. 2
0
 public LogOperationExceptionContext(ISelect <TIn, ValueTask> operation, ILogException <TOut> log)
 {
     _operation = operation;
     _log       = log;
 }
Esempio n. 3
0
 public LogOperationExceptionBinding(ISelect <TIn, ValueTask> operation, Parameter <TIn, TOut> select, ILogException <TOut> log)
 {
     _operation = operation;
     _select    = select;
     _log       = log;
 }
 public ContactServiceController()
 {
     this._contactrepository = new ContactRepository(new VALENCEDBEntitiesTest());
     this._ILogException     = logGenerator.CreateInstance;
 }