public IQueryable <StudentTransaction> FindBy(System.Linq.Expressions.Expression <Func <StudentTransaction, bool> > predicate) { StudentTransactionDAL dalObject = new StudentTransactionDAL(); IQueryable <StudentTransaction> results = dalObject.FindBy(predicate); return(results); }
public IQueryable <StudentTransaction> GetAll(int schoolId) { StudentTransactionDAL dalObject = new StudentTransactionDAL(); IQueryable <StudentTransaction> results = dalObject.GetAll(schoolId); return(results); }
public IQueryable <StudentTransactionSub> GetAllStudentTransactionSubByTransactionId(long StudentTransactionId) { StudentTransactionDAL dalObject = new StudentTransactionDAL(); return(dalObject.GetAllStudentTransactionSubByTransactionId(StudentTransactionId)); }
public void Delete(int id) { StudentTransactionDAL dalObject = new StudentTransactionDAL(); dalObject.Delete(id); }
public void Edit(StudentTransaction entity) { StudentTransactionDAL dalObject = new StudentTransactionDAL(); dalObject.Edit(entity); }
public void Add(StudentTransaction entity, int SchoolId) { StudentTransactionDAL dalObject = new StudentTransactionDAL(); dalObject.Add(entity, SchoolId); }