コード例 #1
0
 public async Task <ActionResult <Timesheet> > PostTimesheet([FromBody] TimesheetDto timesheet)
 {
     return(await _timesheetRepository.AddTimesheet(timesheet));
 }