예제 #1
0
 public Notacreditodet GetNotacreditodet(Expression <Func <Notacreditodet, bool> > criteria)
 {
     return(NotacreditodetDao.Get(criteria));
 }
예제 #2
0
 public long CountNotacreditodet()
 {
     return(NotacreditodetDao.Count());
 }
예제 #3
0
 public List <Notacreditodet> GetAllNotacreditodet(string conditions, string orders)
 {
     return(NotacreditodetDao.GetAll(conditions, orders));
 }
예제 #4
0
 public Notacreditodet GetNotacreditodet(int id)
 {
     return(NotacreditodetDao.Get(id));
 }
예제 #5
0
 public List <Notacreditodet> GetAllNotacreditodet(Expression <Func <Notacreditodet, bool> > criteria)
 {
     return(NotacreditodetDao.GetAll(criteria));
 }
예제 #6
0
 public List <Notacreditodet> GetAllNotacreditodet(string orders)
 {
     return(NotacreditodetDao.GetAll(orders));
 }
예제 #7
0
 public List <Notacreditodet> GetAllNotacreditodet()
 {
     return(NotacreditodetDao.GetAll());
 }
예제 #8
0
 public void DeleteNotacreditodet(int id)
 {
     NotacreditodetDao.Delete(id);
 }
예제 #9
0
 public void UpdateNotacreditodet(Notacreditodet entity)
 {
     NotacreditodetDao.Update(entity);
 }
예제 #10
0
 public int SaveNotacreditodet(Notacreditodet entity)
 {
     return(NotacreditodetDao.Save(entity));
 }
예제 #11
0
 public long CountNotacreditodet(Expression <Func <Notacreditodet, bool> > criteria)
 {
     return(NotacreditodetDao.Count(criteria));
 }