public static bool Update(DTO.GastosComunesDTO myGastosComunesDTO)
        {
            bool resultado = GastosComunesDAL.Update(myGastosComunesDTO);

            return(resultado);
        }
        public static bool Insert(DTO.GastosComunesDTO myGastosComunesDTO)
        {
            bool resultado = GastosComunesDAL.Insert(myGastosComunesDTO);

            return(resultado);
        }