Beispiel #1
0
        public DataTable RecuperarLecturasConceptosDT(string texto, int posicion)
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.RecuperarLecturasConceptosDT(texto, posicion));
        }
Beispiel #2
0
        public List <LecturasConceptos> TiposMedidoresGetAll()
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.LecturasConceptosGetAll());
        }
Beispiel #3
0
        /*
         * Este metodo fue creado para poder implementar Modos Lecturas,
         * en el cual en la variable string se pasa el texto que se tiene que buscar
         * y  en la variable int se controla si se tiene que buscar por:
         * caso 0: Numero
         * caso 1: Descripcion corta
         * caso 2: descripcion
         * Retorna una Lista ya que puede llegar a traer mas de un resultado
         */
        public static List <LecturasConceptos> RecuperarLecturasConceptos(string texto, int posicion)
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.RecuperarLecturasConceptos(texto, posicion));
        }
Beispiel #4
0
        public DataTable LecturasConceptosGetAllDT()
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.LecturasConceptosGetAllDT());
        }
Beispiel #5
0
        public LecturasConceptos LecturasConceptosGetById(long oLC)
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.LecturasConceptosGetById(oLC));
        }
Beispiel #6
0
        public bool LecturasConceptosDelete(string oLC)
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.LecturasConceptosDelete(oLC));
        }
Beispiel #7
0
        public bool LecturasConceptosUpdate(LecturasConceptos oLC)
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.LecturasConceptosUpdate(oLC));
        }
Beispiel #8
0
        public long LecturasConceptosAdd(LecturasConceptos oLC)
        {
            LecturasConceptosImpl auxImple = new LecturasConceptosImpl();

            return(auxImple.LecturasConceptosAdd(oLC));
        }