Ejemplo n.º 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);
        }
Ejemplo n.º 2
0
        public IQueryable <StudentTransaction> GetAll(int schoolId)
        {
            StudentTransactionDAL           dalObject = new StudentTransactionDAL();
            IQueryable <StudentTransaction> results   = dalObject.GetAll(schoolId);

            return(results);
        }
Ejemplo n.º 3
0
        public IQueryable <StudentTransactionSub> GetAllStudentTransactionSubByTransactionId(long StudentTransactionId)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            return(dalObject.GetAllStudentTransactionSubByTransactionId(StudentTransactionId));
        }
Ejemplo n.º 4
0
        public void Delete(int id)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            dalObject.Delete(id);
        }
Ejemplo n.º 5
0
        public void Edit(StudentTransaction entity)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            dalObject.Edit(entity);
        }
Ejemplo n.º 6
0
        public void Add(StudentTransaction entity, int SchoolId)
        {
            StudentTransactionDAL dalObject = new StudentTransactionDAL();

            dalObject.Add(entity, SchoolId);
        }