예제 #1
0
 public Accesoform GetAccesoform(Expression <Func <Accesoform, bool> > criteria)
 {
     return(AccesoformDao.Get(criteria));
 }
예제 #2
0
 public long CountAccesoform()
 {
     return(AccesoformDao.Count());
 }
예제 #3
0
 public List <Accesoform> GetAllAccesoform(string conditions, string orders)
 {
     return(AccesoformDao.GetAll(conditions, orders));
 }
예제 #4
0
 public Accesoform GetAccesoform(int id)
 {
     return(AccesoformDao.Get(id));
 }
예제 #5
0
 public List <Accesoform> GetAllAccesoform(Expression <Func <Accesoform, bool> > criteria)
 {
     return(AccesoformDao.GetAll(criteria));
 }
예제 #6
0
 public List <Accesoform> GetAllAccesoform(string orders)
 {
     return(AccesoformDao.GetAll(orders));
 }
예제 #7
0
 public List <Accesoform> GetAllAccesoform()
 {
     return(AccesoformDao.GetAll());
 }
예제 #8
0
 public void DeleteAccesoform(int id)
 {
     AccesoformDao.Delete(id);
 }
예제 #9
0
 public void UpdateAccesoform(Accesoform entity)
 {
     AccesoformDao.Update(entity);
 }
예제 #10
0
 public int SaveAccesoform(Accesoform entity)
 {
     return(AccesoformDao.Save(entity));
 }
예제 #11
0
 public long CountAccesoform(Expression <Func <Accesoform, bool> > criteria)
 {
     return(AccesoformDao.Count(criteria));
 }