Exemplo n.º 1
0
        public IQueryable <ReligionCast> FindBy(System.Linq.Expressions.Expression <Func <ReligionCast, bool> > predicate)
        {
            ReligionCastDAL           dalObject = new ReligionCastDAL();
            IQueryable <ReligionCast> results   = dalObject.FindBy(predicate);

            return(results);
        }
Exemplo n.º 2
0
        public IQueryable <ReligionCast> GetAll()
        {
            ReligionCastDAL           dalObject = new ReligionCastDAL();
            IQueryable <ReligionCast> results   = dalObject.GetAll();

            return(results);
        }
Exemplo n.º 3
0
        public void Delete(int id)
        {
            ReligionCastDAL dalObject = new ReligionCastDAL();

            dalObject.Delete(id);
        }
Exemplo n.º 4
0
        public void Edit(ReligionCast entity)
        {
            ReligionCastDAL dalObject = new ReligionCastDAL();

            dalObject.Edit(entity);
        }
Exemplo n.º 5
0
        public void Add(ReligionCast entity)
        {
            ReligionCastDAL dalObject = new ReligionCastDAL();

            dalObject.Add(entity);
        }