コード例 #1
0
 public ClassSchoolYearsChildEndpointSelector this[Guid classId] =>
 childEndpointFactory.CreateChildEndpointSelector <ClassSchoolYearsChildEndpointSelector>(basePath + $"/{classId}");
コード例 #2
0
 public ClassSchoolYearSubjectStudentsChildEndpointSelector this[Guid studentId] =>
 childEndpointFactory.CreateChildEndpointSelector <ClassSchoolYearSubjectStudentsChildEndpointSelector>(
     baseUrl + $"/{studentId}");
コード例 #3
0
ファイル: SubjectsEndpoint.cs プロジェクト: koppa96/eschool
 public SubjectsChildEndpointSelector this[Guid subjectId] =>
 childEndpointFactory.CreateChildEndpointSelector <SubjectsChildEndpointSelector>(BasePath + $"/{subjectId}");
コード例 #4
0
ファイル: AnswersEndpoint.cs プロジェクト: koppa96/eschool
 public AnswersChildEndpointSelector this[Guid answerId] =>
 childEndpointFactory.CreateChildEndpointSelector <AnswersChildEndpointSelector>(basePath + $"/{answerId}");
コード例 #5
0
 public SolutionsChildEndpointSelector this[Guid solutionId] =>
 childEndpointFactory.CreateChildEndpointSelector <SolutionsChildEndpointSelector>(
     basePath + $"/{solutionId}");
コード例 #6
0
ファイル: HomeworksEndpoint.cs プロジェクト: koppa96/eschool
 public HomeworksChildEndpointSelector this[Guid homeworkId] =>
 childEndpointFactory.CreateChildEndpointSelector <HomeworksChildEndpointSelector>(
     BasePath + $"/{homeworkId}");
コード例 #7
0
 public TenantsChildEndpointSelector this[Guid tenantId] =>
 childEndpointFactory.CreateChildEndpointSelector <TenantsChildEndpointSelector>(BasePath + $"/{tenantId}");
コード例 #8
0
 public SchoolYearsChildEndpointSelector this[Guid schoolYearId] =>
 childEndpointFactory.CreateChildEndpointSelector <SchoolYearsChildEndpointSelector>(BasePath + $"/{schoolYearId}");
コード例 #9
0
 public ClassSchoolYearSubjectsChildEndpointSelector this[Guid subjectId] =>
 childEndpointFactory.CreateChildEndpointSelector <ClassSchoolYearSubjectsChildEndpointSelector>(
     basePath + $"/{subjectId}");