Exemplo n.º 1
0
 public Int32 C_insertar_cliente(Cliente cliente)
 {
     try
     {
         Int32     resp      = 0;
         M_Cliente M_cliente = new M_Cliente();
         resp = M_cliente.M_insertar_cliente(cliente);
         return(resp);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Exemplo n.º 2
0
        //////////////////////////////////////////////////////////////////////////////////////////

        public Cliente C_buscarPorId_cliente(Int16 idCliente)
        {
            try
            {
                Cliente cliente = new Cliente();

                M_Cliente M_cliente = new M_Cliente();
                cliente = M_cliente.M_buscarPorId_cliente(idCliente);


                return(cliente);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
Exemplo n.º 3
0
        //////////////////////////////////////////////////////////////////////////////////////////
        public List <Cliente> C_buscarPorDNI_cliente(string dni)
        {
            try
            {
                List <Cliente> clientes = new List <Cliente>();

                M_Cliente M_cliente = new M_Cliente();
                clientes = M_cliente.M_buscarPorDNI_cliente(dni);


                return(clientes);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
Exemplo n.º 4
0
        ///////////////////////////////

        public List <Cliente> C_Buscar_clienteEmpresa(DateTime fechaIni, DateTime fechaFin)
        {
            try
            {
                List <Cliente> clientes = new List <Cliente>();

                M_Cliente M_cliente = new M_Cliente();
                clientes = M_cliente.M_Buscar_clienteEmpresa(fechaIni, fechaFin);


                return(clientes);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
Exemplo n.º 5
0
        //////////////////////////////////////////////////////////////////////////////////////////
        public Int32 C_eliminar_cliente(Int16 idCliente)
        {
            try
            {
                Int32 resp = 0;

                M_Cliente M_cliente = new M_Cliente();
                resp = M_cliente.M_eliminar_cliente(idCliente);


                return(resp);
            }
            catch (Exception)
            {
                throw;
                //throw new Exception(ex.Message);
            }
        }