Ejemplo n.º 1
0
        public JsonResult Delete(int id)
        {
            ResponeModel response = new ResponeModel(true);

            Context.DataPendingin dbItem = RepoPendingin.FindByPK(id);

            RepoPendingin.delete(dbItem, UserPrincipal.id);

            return(Json(response));
        }