コード例 #1
0
 public AvlAggregatorService(IAvlAggregatorServiceBL businessLogic, IAvlConfiguration configuration, IUtils utils, IAvlLogger <AvlAggregatorService> logger)
 {
     this.BL     = businessLogic;
     this.Config = configuration;
     this.Utils  = utils;
     this.Logger = logger;
 }
コード例 #2
0
 public AvlAggregatorServiceBL(IAvlRepository repo, string serviceName, IAvlConfiguration config, ICachedDictionary <string, Session> sessions)
 {
     this.Repo           = repo;
     this.ServiceName    = serviceName;
     this.Configuration  = config;
     this.ActiveSessions = sessions;
 }
コード例 #3
0
 public AvlAggregatorService(IAvlAggregatorServiceBL businessLogic, IAvlConfiguration configuration)
 {
     this.BL     = businessLogic;
     this.Config = configuration;
 }