Пример #1
0
        internal static UserInfo ToBean(UserInfoRow row)
        {
            if (row == null)
            {
                return(null);
            }

            var bean = new UserInfo();

            bean.UserId    = row.UserId;
            bean.Unit      = (TUnitType)row.Unit;
            bean.Height    = row.Height;
            bean.Weight    = row.Weight;
            bean.Sex       = (TSexType)row.Sex;
            bean.ZipCode   = row.ZipCode;
            bean.CountryId = row.CountryId;

            if (string.IsNullOrWhiteSpace(row.TimeZoneName))
            {
                bean.TimeZoneName = TimeZoneMapper.GetOlsonTimeZoneName(TimeZoneInfo.Local.Id);
            }
            else
            {
                bean.TimeZoneName = row.TimeZoneName;
            }

            return(bean);
        }
Пример #2
0
        public static void ToRow(UserInfo bean, UserInfoRow row)
        {
            if (bean == null)
            {
                return;
            }

            row.UserId    = bean.UserId;
            row.Unit      = (int)bean.Unit;
            row.Height    = bean.Height;
            row.Weight    = bean.Weight;
            row.Sex       = (int)bean.Sex;
            row.ZipCode   = bean.ZipCode;
            row.CountryId = bean.CountryId;

            if (string.IsNullOrWhiteSpace(bean.TimeZoneName))
            {
                if (string.IsNullOrWhiteSpace(row.TimeZoneName)) // only update if not present
                {
                    row.TimeZoneName = TimeZoneMapper.GetOlsonTimeZoneName(TimeZoneInfo.Local.Id);
                }
            }
            else
            {
                row.TimeZoneName = bean.TimeZoneName;
            }
        }