Exemple #1
0
 public LotAnalyzerService(ILogger logger, IStreamReader streamReader, IReportGeneratorService reportGeneratorService, LotSettings lotconfiguration)
 {
     _logger                 = logger;
     _streamReader           = streamReader;
     _lotconfiguration       = lotconfiguration;
     _reportGeneratorService = reportGeneratorService;
 }
Exemple #2
0
 public Lot(LotSettings configuration, string fileName)
 {
     _configuration = configuration;
     customers      = new List <Customer.Customer>();
     sales          = new List <Sale.Sale>();
     salespersons   = new List <Salesperson.Salesperson>();
     name           = fileName;
 }