public FanGraphsHitterController(Helpers helpers, GoogleSheetsConnector googleSheetsConnector, FanGraphsUriEndPoints fanGraphsEndPoints, ProjectDirectoryEndPoints projectEndPoints)
 {
     _helpers = helpers;
     _googleSheetsConnector = googleSheetsConnector;
     _fanGraphsEndPoints    = fanGraphsEndPoints;
     _projectEndPoints      = projectEndPoints;
 }
Ejemplo n.º 2
0
 public FanGraphsSpController(Helpers helpers, FanGraphsUriEndPoints endPoints, GoogleSheetsConnector googleSheetsConnector, CsvHandler csvHandler, BaseballScraperContext context, ProjectDirectoryEndPoints projectDirectory)
 {
     _helpers               = helpers;
     _endPoints             = endPoints;
     _googleSheetsConnector = googleSheetsConnector;
     _csvHandler            = csvHandler;
     _context               = context;
     _projectDirectory      = projectDirectory;
 }
Ejemplo n.º 3
0
 public FanGraphsUtilities(Helpers helpers, FanGraphsUriEndPoints fanGraphsUriEndPoints, CsvHandler csvHandler)
 {
     _csvHandler = csvHandler;
     _endPoints  = fanGraphsUriEndPoints;
     _helpers    = helpers;
 }