Пример #1
0
 public ActionResult PostCheckListItem(string checkListId, [FromBody] CheckItemDTO model)
 {
     try
     {
         var result = card_repo_.AddCheckListItem(checkListId, model);
         return(this.Ok(result));
     }
     catch (Exception)
     {
         throw;
     }
 }