コード例 #1
0
 public UserAccessSlideDeckProgramService(HttpClient http)
 {
     _base = new ServiceBase2(http);
 }
コード例 #2
0
 public SlideDeckProgramService(HttpClient http)
 {
     _http = http;
     _base = new ServiceBase2(http);
 }
コード例 #3
0
 public CompletedReviewableProgramServices(HttpClient http)
 {
     _base = new ServiceBase2(http);
 }
コード例 #4
0
ファイル: BlogService.cs プロジェクト: land297/LearningBlazor
 public BlogService(HttpClient http)
 {
     _http = http;
     _base = new ServiceBase2(http);
 }
コード例 #5
0
 public UserAvatarService(HttpClient http, IMediator mediator)
 {
     _http    = http;
     _base    = new ServiceBase2(http);
     Mediator = mediator;
 }