Пример #1
0
        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);
        }
Пример #2
0
 public Retorno Update(ListaTarefaEntity entity)
 {
     throw new NotImplementedException();
 }