Exemple #1
0
 public Task <StudentWithDetailsDto> UpdateAsync([FromQuery] StudentPrimaryKeyDto StudentPrimaryKey, StudentUpdateDto StudentUpdate)
 {
     return(this.StudentCrudAppService.UpdateAsync(StudentPrimaryKey, StudentUpdate));
 }
Exemple #2
0
 public Task DeleteAsync([FromQuery] StudentPrimaryKeyDto StudentPrimaryKey)
 {
     return(this.StudentCrudAppService.DeleteAsync(StudentPrimaryKey));
 }
Exemple #3
0
 public Task <StudentWithDetailsDto> GetAsync([FromQuery] StudentPrimaryKeyDto StudentPrimaryKey)
 {
     return(this.StudentCrudAppService.GetAsync(StudentPrimaryKey));
 }