public static bool ActivaGiro(GiroDTO theGiroDTO) { bool respuesta = GiroDAL.ActivaGiro(theGiroDTO); return(respuesta); }
public static bool Insert(DTO.GiroDTO theGiroDTO) { bool resultado = GiroDAL.Insert(theGiroDTO); return(resultado); }
public static bool Update(DTO.GiroDTO theGiroDTO) { bool resultado = GiroDAL.Update(theGiroDTO); return(resultado); }
public static bool Delete(GiroDTO theGiroDTO) { bool resultado = GiroDAL.Delete(theGiroDTO); return(resultado); }