public Retorno Insert(ListaTarefaEntity entity) { Retorno retorno = new Retorno(); try { TblListaTarefa lista = new TblListaTarefa { IdLista = entity.IdLista, IdTarefa = entity.IdTarefa, DataAlteracao = DateTime.Now }; using (var uow = new UnitOfWork()) { uow.ListaTarefaRepository.Insert(lista); uow.SavaChanges(); retorno.Sucesso = true; retorno.Mensagem = Mensagens.MSG_005; } } catch (Exception ex) { retorno.Sucesso = false; retorno.Mensagem = Mensagens.MSG_006; } return(retorno); }
public Retorno Update(ListaTarefaEntity entity) { throw new NotImplementedException(); }