Ejemplo n.º 1
0
 public object ExecuteScalar()
 {
     return(DAO.ExecuteScalar(GetCommand()));
 }
Ejemplo n.º 2
0
 public Exception ExecuteEx()
 {
     return(DAO.ExecuteEx(GetCommand()));
 }
Ejemplo n.º 3
0
 public int Execute()
 {
     return(DAO.Execute(GetCommand()));
 }
Ejemplo n.º 4
0
 public DataTable GetData()
 {
     return(DAO.getData(GetCommand()));
 }
Ejemplo n.º 5
0
 public static void DeleteNow(int id, Type type)
 {
     DAO.Execute(Factory.getDeleteCommand(id, type));
 }
Ejemplo n.º 6
0
 public static void UpdateNow(object obj)
 {
     DAO.Execute(Factory.getUpdateCommand(obj));
 }