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