Limpieza de codigo

This commit is contained in:
2013-10-14 20:20:23 +02:00
parent af72a4decb
commit b4eea3818f
22 changed files with 194 additions and 197 deletions

View File

@@ -14,7 +14,7 @@ namespace ServerExplorer
get { return pathRaiz; }
set { pathRaiz = value; }
}
public String pathDAL=".";
public String pathDAL = ".";
public String PathDAL
{
get
@@ -33,7 +33,8 @@ namespace ServerExplorer
public String pathDTO = ".";
public String PathDTO
{
get {
get
{
if (pathDTO == ".")
{
return pathRaiz;
@@ -48,7 +49,8 @@ namespace ServerExplorer
public String pathExtra = ".";
public String PathExtra
{
get {
get
{
if (pathExtra == ".")
{
return pathRaiz;
@@ -82,13 +84,13 @@ namespace ServerExplorer
lector.Close();
return config;
}
}
public class TablaInfo
{
public String Esquema="";
public String Nombre="";
public String Esquema = "";
public String Nombre = "";
public TablaInfo() { }
public TablaInfo(String esquema, String nombre)
@@ -97,5 +99,4 @@ namespace ServerExplorer
Nombre = nombre;
}
}
}
}