示例#1
0
        public IQueryable <StudentTransaction> FindBy(System.Linq.Expressions.Expression <Func <StudentTransaction, bool> > predicate)
        {
            StudentTransactionDAL           dalObject = new StudentTransactionDAL();
            IQueryable <StudentTransaction> results   = dalObject.FindBy(predicate);

            return(results);
        }
示例#2
0
        public IQueryable <StudentTransaction> GetAll(int schoolId)
        {
            StudentTransactionDAL           dalObject = new StudentTransactionDAL();
            IQueryable <StudentTransaction> results   = dalObject.GetAll(schoolId);

            return(results);
        }
示例#3
0
        public IQueryable <StudentTransactionSub> GetAllStudentTransactionSubByTransactionId(long StudentTransactionId)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            return(dalObject.GetAllStudentTransactionSubByTransactionId(StudentTransactionId));
        }
示例#4
0
        public void Delete(int id)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            dalObject.Delete(id);
        }
示例#5
0
        public void Edit(StudentTransaction entity)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            dalObject.Edit(entity);
        }
示例#6
0
        public void Add(StudentTransaction entity, int SchoolId)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            dalObject.Add(entity, SchoolId);
        }