Ejemplo n.º 1
0
 /// <summary>
 /// Post-map data service data sources and arguments to a single DataService instance.
 /// </summary>
 private void PostMapDataService(DataService dataService, bool includeServiceParameters)
 {
     dataService.Args        = GetServiceArguments(dataService.Id);
     dataService.DataSources = GetServiceDataSources(dataService.Id);
     if (includeServiceParameters)
     {
         _pluginLoader.GetDataServiceParameters(dataService);
     }
 }