예제 #1
0
        public void Insert(string Ip)
        {
            PhpssIp item = new PhpssIp();

            item.Ip = Ip;


            item.Save(UserName);
        }
예제 #2
0
        public void Update(int Id, string Ip)
        {
            PhpssIp item = new PhpssIp();

            item.MarkOld();
            item.IsLoaded = true;

            item.Id = Id;

            item.Ip = Ip;

            item.Save(UserName);
        }