public void Delete(string id) { _todoRepository.Delete(Guid.Parse(id)); }
public void Delete(Guid id) { _todoRepository.Delete(id); }