예제 #1
0
        public static BaseLoginInfoHistory NewHistoryItem(BaseLoginInfo item, Person person, String address, String proxy)
        {
            BaseLoginInfoHistory r = new BaseLoginInfoHistory();

            r.CreatorInfo = CreatorInfo.Create(item, person, address, proxy);

            return(r);
        }
예제 #2
0
        public static BaseLoginInfoHistory NewHistoryItem(Person person, String ipAddress, String proxyIpAddress)
        {
            BaseLoginInfoHistory r = new BaseLoginInfoHistory();

            r.CreatorInfo = CreatorInfo.Create(person, ipAddress, proxyIpAddress);

            return(r);
        }