public void Destroy(Task ticket) { Debug.WriteLine("Destroy"); }
public object Update(Task ticket) { Debug.WriteLine("Update"); return new { Success = true, Records = new[] { ticket } }; }
public void Create(Task ticket) { Debug.WriteLine("Create"); }