Ejemplo n.º 1
0
        public Precio BuscarPorId(int id)
        {
            Precio result    = default(Precio);
            var    precioDAC = new PrecioDAC();

            result = precioDAC.ReadBy(id);
            return(result);
        }
Ejemplo n.º 2
0
        public Precio Details(int Id)
        {
            Precio result    = default(Precio);
            var    precioDAC = new PrecioDAC();

            result = precioDAC.ReadBy(Id);
            return(result);
        }
Ejemplo n.º 3
0
        public Precio GetByID(int ID)
        {
            Precio result    = default(Precio);
            var    PrecioDAC = new PrecioDAC();

            result = PrecioDAC.ReadBy(ID);
            return(result);
        }
Ejemplo n.º 4
0
        public Precio Ver(Precio precio)
        {
            Precio result = default(Precio);

            var PrecioDAC = new PrecioDAC();

            result = PrecioDAC.ReadBy(precio);
            return(result);
        }
Ejemplo n.º 5
0
        public Precio Find(int?id)
        {
            Precio result    = default(Precio);
            var    precioDAC = new PrecioDAC();

            result = precioDAC.ReadBy(id.Value);

            result.TipoServicio = new TipoServicioDAC().ReadBy(result.TipoServicioId);
            return(result);
        }
Ejemplo n.º 6
0
        public Precio Eliminar(int Id)

        {
            Precio result    = default(Precio);
            var    precioDAC = new PrecioDAC();

            result = precioDAC.ReadBy(Id);
            precioDAC.Delete(Id);
            return(result);
        }
Ejemplo n.º 7
0
        public Precio Eliminar(int id)
        {
            Precio result    = default(Precio);
            var    precioDAC = new PrecioDAC();

            try
            {
                result = precioDAC.ReadBy(id);
                precioDAC.Delete(id);
                return(result);
            }
            catch (Exception)
            {
                throw;
            }
        }