Exemple #1
0
        public bool Existe_Pallet(E_Pallet pallet)
        {
            D_Recepcion recepcion1 = new D_Recepcion();

            return(recepcion1.Existe_Pallet(pallet));
        }
Exemple #2
0
        public int Posicion_Pallet(string ID_recepcion)
        {
            D_Recepcion recepcion1 = new D_Recepcion();

            return(recepcion1.Posicion_Pallet(ID_recepcion));
        }
Exemple #3
0
        public bool Borrar_Descarga(string descarga1)
        {
            D_Recepcion descarga = new D_Recepcion();

            return(descarga.Borrar_Descarga(descarga1));
        }
Exemple #4
0
        //uso sublote busca solo por folio
        public bool Existe_Pallet(string folio, E_Pallet pallet)
        {
            D_Recepcion recepcion1 = new D_Recepcion();

            return(recepcion1.Existe_Pallet(folio, pallet));
        }
Exemple #5
0
        public bool Agregar_Descarga(E_Descarga descarga1)
        {
            D_Recepcion descarga = new D_Recepcion();

            return(descarga.Agregar_Descarga(descarga1));
        }
Exemple #6
0
        public bool Modificar_Descarga(E_Descarga descarga1)
        {
            D_Recepcion descarga = new D_Recepcion();

            return(descarga.Modificar_Descarga(descarga1));
        }
Exemple #7
0
        public List <E_Descarga> Lista_Descarga()
        {
            D_Recepcion objeto1 = new D_Recepcion();

            return(objeto1.Lista_Descarga());
        }
Exemple #8
0
        public bool Borrar_Destino(string destino1)
        {
            D_Recepcion destino = new D_Recepcion();

            return(destino.Borrar_Destino(destino1));
        }
Exemple #9
0
        public bool Modificar_Destino(E_Destino destino1)
        {
            D_Recepcion destino = new D_Recepcion();

            return(destino.Modificar_Destino(destino1));
        }
Exemple #10
0
        public bool Agregar_Destino(E_Destino destino1)
        {
            D_Recepcion destino = new D_Recepcion();

            return(destino.Agregar_Destino(destino1));
        }
Exemple #11
0
        public List <E_Destino> Lista_Destino()
        {
            D_Recepcion objeto1 = new D_Recepcion();

            return(objeto1.Lista_Destino());
        }