public AvlAggregatorService(IAvlAggregatorServiceBL businessLogic, IAvlConfiguration configuration, IUtils utils, IAvlLogger <AvlAggregatorService> logger)
 {
     this.BL     = businessLogic;
     this.Config = configuration;
     this.Utils  = utils;
     this.Logger = logger;
 }
 protected void Application_Start(object sender, EventArgs e)
 {
     //System.Diagnostics.Debugger.Launch();
     container = Bootstrap.Initialize();
     Log       = container.Resolve <IAvlLogger>();
     Log.LogInfo("Service Started");
 }
Exemple #3
0
 public RequestInterceptor(RequestDelegate next, IAvlLogger <RequestInterceptor> logger)
 {
     this._logger = logger;
     this._next   = next;
 }