Example #1
0
        public static bool ActivaGiro(GiroDTO theGiroDTO)
        {
            bool respuesta = GiroDAL.ActivaGiro(theGiroDTO);

            return(respuesta);
        }
Example #2
0
        public static bool Insert(DTO.GiroDTO theGiroDTO)
        {
            bool resultado = GiroDAL.Insert(theGiroDTO);

            return(resultado);
        }
Example #3
0
        public static bool Update(DTO.GiroDTO theGiroDTO)
        {
            bool resultado = GiroDAL.Update(theGiroDTO);

            return(resultado);
        }
Example #4
0
        public static bool Delete(GiroDTO theGiroDTO)
        {
            bool resultado = GiroDAL.Delete(theGiroDTO);

            return(resultado);
        }