Example #1
0
        public List <Conceptos> ConceptosGetAll()
        {
            ConceptosImpl oConceptosImpl = new ConceptosImpl();

            return(oConceptosImpl.ConceptosGetAll());
        }
Example #2
0
        public Conceptos ConceptosGetById(long Id)
        {
            ConceptosImpl oConceptosImpl = new ConceptosImpl();

            return(oConceptosImpl.ConceptosGetById(Id));
        }
Example #3
0
        public bool ConceptosDelete(int Id)
        {
            ConceptosImpl oConceptosImpl = new ConceptosImpl();

            return(oConceptosImpl.ConceptosDelete(Id));
        }
Example #4
0
        public Transacciones ConceptosUpdateTrans(Conceptos oConceptos)
        {
            ConceptosImpl oConceptosImpl = new ConceptosImpl();

            return(oConceptosImpl.ConceptosUpdateTrans(oConceptos));
        }
Example #5
0
        public bool ConceptosUpdate(Conceptos oConceptos)
        {
            ConceptosImpl oConceptosImpl = new ConceptosImpl();

            return(oConceptosImpl.ConceptosUpdate(oConceptos));
        }
Example #6
0
        public long ConceptosAdd(Conceptos oConceptos)
        {
            ConceptosImpl oConceptosImpl = new ConceptosImpl();

            return(oConceptosImpl.ConceptosAdd(oConceptos));
        }