Example #1
0
 public TileService(IBuildDataService buildDataService)
 {
     if (buildDataService == null)
     {
         throw new ArgumentNullException(nameof(buildDataService));
     }
     _buildDataService = buildDataService;
 }
 public BuildStatusProvider(IBuildDataService dataService)
 {
     DataService = dataService;
 }
Example #3
0
 public TileService(IBuildDataService buildDataService)
 {
     _buildDataService = buildDataService ?? throw new ArgumentNullException(nameof(buildDataService));
 }