示例#1
0
 public Cpventadetserie GetCpventadetserie(Expression <Func <Cpventadetserie, bool> > criteria)
 {
     return(CpventadetserieDao.Get(criteria));
 }
示例#2
0
 public long CountCpventadetserie()
 {
     return(CpventadetserieDao.Count());
 }
示例#3
0
 public List <Cpventadetserie> GetAllCpventadetserie(string conditions, string orders)
 {
     return(CpventadetserieDao.GetAll(conditions, orders));
 }
示例#4
0
 public Cpventadetserie GetCpventadetserie(int id)
 {
     return(CpventadetserieDao.Get(id));
 }
示例#5
0
 public List <Cpventadetserie> GetAllCpventadetserie(Expression <Func <Cpventadetserie, bool> > criteria)
 {
     return(CpventadetserieDao.GetAll(criteria));
 }
示例#6
0
 public List <Cpventadetserie> GetAllCpventadetserie(string orders)
 {
     return(CpventadetserieDao.GetAll(orders));
 }
示例#7
0
 public List <Cpventadetserie> GetAllCpventadetserie()
 {
     return(CpventadetserieDao.GetAll());
 }
示例#8
0
 public void DeleteCpventadetserie(int id)
 {
     CpventadetserieDao.Delete(id);
 }
示例#9
0
 public void UpdateCpventadetserie(Cpventadetserie entity)
 {
     CpventadetserieDao.Update(entity);
 }
示例#10
0
 public int SaveCpventadetserie(Cpventadetserie entity)
 {
     return(CpventadetserieDao.Save(entity));
 }
示例#11
0
 public long CountCpventadetserie(Expression <Func <Cpventadetserie, bool> > criteria)
 {
     return(CpventadetserieDao.Count(criteria));
 }