Ejemplo n.º 1
0
        public bool Salvar(EntregaInfo entregaInfo)
        {
            Acessor acessor = new Acessor();
            bool    sucesso = true;

            try
            {
                using (TransactionScope transacao = new TransactionScope())
                {
                    if (ValidaEntrega(entregaInfo))
                    {
                        if (entregaInfo.IsNew)
                        {
                            sucesso = acessor.EntregaDal.Inserir(entregaInfo);
                        }
                        else if (entregaInfo.IsDirty)
                        {
                            sucesso = acessor.EntregaDal.Editar(entregaInfo);
                        }
                    }
                    transacao.Complete();
                }
                return(sucesso);
            }
            catch (Exception exc)
            {
                throw new Exception(exc.Message, exc);
            }
            finally
            {
                acessor = null;
            }
        }
Ejemplo n.º 2
0
        private bool ValidaEntrega(EntregaInfo entregaInfo)
        {
            bool sucesso = true;

            try
            {
                if (entregaInfo == null)
                {
                    throw new Exception("Objeto EntregaInfo é nulo");
                }
            }
            catch
            {
                sucesso = false;
            }
            return(sucesso);
        }
Ejemplo n.º 3
0
        public EntregaInfo ListarPorCodigo(int ent_codigo)
        {
            Acessor     acessor     = new Acessor();
            EntregaInfo entregaInfo = new EntregaInfo();

            try
            {
                return(entregaInfo = acessor.EntregaDal.ListarPorCodigo(ent_codigo));
            }
            catch (Exception exc)
            {
                throw new Exception(exc.Message, exc);
            }
            finally
            {
                acessor = null;
            }
        }
Ejemplo n.º 4
0
        public bool Inserir(EntregaInfo entregaInfo)
        {
            List <SqlParameter> lParam = new List <SqlParameter>();
            bool            sucesso    = false;
            StoredProcedure sp         = null;
            SqlDataReader   dr         = null;

            try
            {
                lParam.Add(new SqlParameter(paramENT_TEN_Codigo, entregaInfo.ENT_TEN_Codigo));
                lParam.Add(new SqlParameter(paramENT_Descricao, entregaInfo.ENT_Descricao));
                lParam.Add(new SqlParameter(paramENT_Data, entregaInfo.ENT_Data));
                lParam.Add(new SqlParameter(paramENT_RES_Codigo, entregaInfo.ENT_RES_Codigo));
                lParam.Add(new SqlParameter(paramENT_EmpresaEntregou, entregaInfo.ENT_EmpresaEntregou));
                lParam.Add(new SqlParameter(paramENT_NomeEntregador, entregaInfo.ENT_NomeEntregador));
                lParam.Add(new SqlParameter(paramENT_TelefoneContato, entregaInfo.ENT_TelefoneContato));

                using (sp = new StoredProcedure(spInserir, lParam, ConexoesBanco.PlusCondominios))
                {
                    dr = sp.GetDataReader();
                    if (dr.Read())
                    {
                        entregaInfo.ENT_Codigo = int.Parse(dr["ENT_Codigo"].ToString());
                        sucesso = true;
                    }
                    else
                    {
                        sucesso = false;
                    }
                }
            }
            catch (Exception exc)
            {
                sucesso = false;
                throw new Exception(exc.Message, exc);
            }
            finally
            {
                lParam = null;
                dr.Close();
            }
            return(sucesso);
        }