public void Delete(int id)
        {
            IpCollectionDal dal = new IpCollectionDal();

            dal.Delete(id);
        }
        public DataTable GetAll()
        {
            IpCollectionDal dal = new IpCollectionDal();

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

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

            dal.Add(info);
        }