public HttpResponseMessage Patch(Guid id, bool Status)
 {
     _process.Delete(id, Status, UpdatedId);
     return(Request.CreateResponse(HttpStatusCode.OK));
 }
Example #2
0
 public void Delete(Report table)
 {
     _report.Delete(table);
 }
Example #3
0
 /// <summary>
 /// Delete删除符合条件的报告记录
 /// </summary>
 /// <param name="where"></param>
 /// <returns></returns>
 public int Delete(string where)
 {
     return(dal.Delete(where));
 }