예제 #1
0
 public Task <CustomerWithDetailsDto> UpdateAsync([FromQuery] CustomerPrimaryKeyDto CustomerPrimaryKey, CustomerUpdateDto CustomerUpdate)
 {
     return(this.CustomerCrudAppService.UpdateAsync(CustomerPrimaryKey, CustomerUpdate));
 }
예제 #2
0
 public Task DeleteAsync([FromQuery] CustomerPrimaryKeyDto CustomerPrimaryKey)
 {
     return(this.CustomerCrudAppService.DeleteAsync(CustomerPrimaryKey));
 }
예제 #3
0
 public Task <CustomerWithDetailsDto> GetAsync([FromQuery] CustomerPrimaryKeyDto CustomerPrimaryKey)
 {
     return(this.CustomerCrudAppService.GetAsync(CustomerPrimaryKey));
 }