Пример #1
0
        public DataTable GetChoferesID(string DNI)
        {
            CD_Chofer objCD_Chofer = new CD_Chofer(AppSettings.GetConnectionString);
            DataTable dtTMP        = new DataTable();

            dtTMP = objCD_Chofer.GetChoferesID(DNI);
            return(dtTMP);
        }
Пример #2
0
        public void InsertChofer(E_Chofer ObjChofer)
        {
            CD_Chofer objCD_Chofer = new CD_Chofer(AppSettings.GetConnectionString);

            objCD_Chofer.InsertChofer(ObjChofer);
        }
Пример #3
0
        public void UpdateChofer(E_Chofer ObjChofer, string Tipo)
        {
            CD_Chofer objCD_Chofer = new CD_Chofer(AppSettings.GetConnectionString);

            objCD_Chofer.UpdateChofer(ObjChofer, Tipo);
        }