Ejemplo n.º 1
0
        public IQueryable <StudentLedger> getStudentLedger(int RegisterId, int ClassId, int DivisionId, int ReligionId, int CastId, int schoolId)
        {
            StudentLedgerDAL           dalObject = new StudentLedgerDAL();
            IQueryable <StudentLedger> results   = dalObject.getStudentLedger(RegisterId, ClassId, DivisionId, ReligionId, CastId, schoolId);

            return(results);
        }
Ejemplo n.º 2
0
        public IQueryable <StudentLedger> FindBy(System.Linq.Expressions.Expression <Func <StudentLedger, bool> > predicate)
        {
            StudentLedgerDAL           dalObject = new StudentLedgerDAL();
            IQueryable <StudentLedger> results   = dalObject.FindBy(predicate);

            return(results);
        }
Ejemplo n.º 3
0
        public IQueryable <StudentLedger> GetAll()
        {
            StudentLedgerDAL           dalObject = new StudentLedgerDAL();
            IQueryable <StudentLedger> results   = dalObject.GetAll();

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

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

            dalObject.Edit(entity);
        }
Ejemplo n.º 6
0
        public void Add(StudentLedger entity)
        {
            StudentLedgerDAL dalObject = new StudentLedgerDAL();

            dalObject.Add(entity);
        }