protected static function Conexao()
 {
     if (self::$Conection == null) {
         self::$Conection = mysqli_connect(self::$Host, self::$User, self::$Pass, self::$Base);
     }
     return self::$Conection;
     echo self::$Conection;
 }