Пример #1
0
 public Module(IHubMetadataService hubMetadataService, IFarmerRepository farmerRepository, IAppInsightsService appInsights)
 {
     _hubMetadataService = hubMetadataService;
     _farmerRepository   = farmerRepository;
     _appInsightsService = appInsights;
 }
Пример #2
0
 public Module(IHubMetadataService hubMetadataService, IAppInsightsService appInsightsService)
 {
     _hubMetadataService = hubMetadataService;
     _appInsightsService = appInsightsService;
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MainPageViewModel"/> class.
 /// </summary>
 /// <param name="hubMetadataService">The hub metadata service.</param>
 public MainPageViewModel(IHubMetadataService hubMetadataService)
 {
     _hubMetadataService = hubMetadataService;
 }