Exemplo n.º 1
0
 public T[] SelectEntitiesByEntityCondition(T Entity, string OrderBy, PageInfo p)
 {
     return(GenericDataAccessLayer <T> .SelectEntitiesByEntityCondition(Entity, OrderBy, p));
 }
Exemplo n.º 2
0
 public System.Data.DataTable SelectRowsByEntityCondition(T Entity, PageInfo p)
 {
     return(GenericDataAccessLayer <T> .SelectRowsByEntityCondition(Entity, p));
 }
Exemplo n.º 3
0
 public System.Data.DataTable SelectAllRows(string OrderBy)
 {
     return(GenericDataAccessLayer <T> .SelectAllRows(OrderBy));
 }
Exemplo n.º 4
0
 public T[] SelectEntitiesByEntityCondition(T Entity)
 {
     return(GenericDataAccessLayer <T> .SelectEntitiesByEntityCondition(Entity));
 }
Exemplo n.º 5
0
 public System.Data.DataTable SelectAllRows()
 {
     return(GenericDataAccessLayer <T> .SelectAllRows());
 }
Exemplo n.º 6
0
 public System.Data.DataTable SelectAllRows(PageInfo pageinfo)
 {
     return(GenericDataAccessLayer <T> .SelectAllRows(pageinfo));
 }
Exemplo n.º 7
0
 public T QueryWithPrimaryKey(T Entity)
 {
     return(GenericDataAccessLayer <T> .QueryWithPrimaryKey(Entity));
 }
Exemplo n.º 8
0
 public T[] SelectAllEntities()
 {
     return(GenericDataAccessLayer <T> .SelectAllEntities());
 }
Exemplo n.º 9
0
 public int Insert(T[] Entity)
 {
     return(GenericDataAccessLayer <T> .Insert(Entity));
 }
Exemplo n.º 10
0
 public bool IsExsist(T Entity)
 {
     return(GenericDataAccessLayer <T> .IsExsist(Entity));
 }
Exemplo n.º 11
0
 public DataTable ExecuteMultiTablesSelectSql(string sql, PageInfo pageinfo, SqlParameter[] cmdParam)
 {
     return(GenericDataAccessLayer <T> .ExecuteMultiTablesSelectSql(sql, pageinfo, cmdParam));
 }
Exemplo n.º 12
0
 public int Delete(T[] Entity)
 {
     return(GenericDataAccessLayer <T> .Delete(Entity));
 }
Exemplo n.º 13
0
 public int Update(T[] Entity)
 {
     return(GenericDataAccessLayer <T> .Update(Entity));
 }
Exemplo n.º 14
0
 public int Update(T Entity, T Where)
 {
     return(GenericDataAccessLayer <T> .Update(Entity, Where));
 }
Exemplo n.º 15
0
 public System.Data.DataTable SelectRowsByEntityCondition(T Entity, string OrderBy)
 {
     return(GenericDataAccessLayer <T> .SelectRowsByEntityCondition(Entity, OrderBy));
 }