Ejemplo n.º 1
0
 public ActionResult PostCheckList(string id, string name)
 {
     try
     {
         var result = card_repo_.AddCheckList(id, name);
         return(this.Ok(result));
     }
     catch (Exception)
     {
         throw;
     }
 }