コード例 #1
0
 public async Task <IActionResult> Delete(int id, SpentDtoSpecialized dto)
 {
     if (id.IsSent())
     {
         dto.SpentId = id;
     }
     return(await base.Delete(dto, "Personal.Expenses - Spent"));
 }
コード例 #2
0
 public async Task <IActionResult> Put([FromBody] SpentDtoSpecialized dto)
 {
     return(await base.Put(dto, "Personal.Expenses - Spent"));
 }