Example #1
0
        public static bool Insert(DTO.PaisDTO myPaisDTO)
        {
            bool resultado = PaisDAL.Insert(myPaisDTO);

            return(resultado);
        }
Example #2
0
        public static bool Update(DTO.PaisDTO myPaisDTO)
        {
            bool resultado = PaisDAL.Update(myPaisDTO);

            return(resultado);
        }
Example #3
0
        public static bool Delete(DTO.PaisDTO myPaisDTO)
        {
            bool resultado = PaisDAL.Delete(myPaisDTO);

            return(resultado);
        }