Esempio n. 1
0
        public void Delete(int id)
        {
            IpCollectionDal dal = new IpCollectionDal();

            dal.Delete(id);
        }
Esempio n. 2
0
        public DataTable GetAll()
        {
            IpCollectionDal dal = new IpCollectionDal();

            return(dal.GetAll());
        }
Esempio n. 3
0
        public void Update(IpCollectionEntity info)
        {
            IpCollectionDal dal = new IpCollectionDal();

            dal.Update(info);
        }
Esempio n. 4
0
        public void Add(IpCollectionEntity info)
        {
            IpCollectionDal dal = new IpCollectionDal();

            dal.Add(info);
        }