public override bool Ejecutar()
 {
     try
     {
         IDaoLugarDireccion DaoLugar = FabricaDAOSqlServer.crearDaoLugarDireccion();
         return(DaoLugar.Agregar(this._laEntidad));
     }
     catch (NotImplementedException e)
     {
         throw new ExceptionM4Tangerine("DS-404", "Metodo no implementado", e);
     }
 }
        public override List <Entidad> Ejecutar()
        {
            try
            {
                IDaoLugarDireccion DaoLugar = FabricaDAOSqlServer.crearDaoLugarDireccion();
                return(DaoLugar.ConsultCityPlaces());
            }
            catch (NotImplementedException e)
            {
                return(null);

                throw new ExceptionM4Tangerine("DS-404", "Metodo no implementado", e);
            }
        }