Example #1
0
        public void UpdateModel(DbPhone model, PhoneRow data)
        {
            if (data == null || model == null)
            {
                return;
            }

            throw new System.NotImplementedException();
        }
Example #2
0
        public void UpdateData(PhoneRow data, DbPhone model)
        {
            if (data == null || model == null)
            {
                return;
            }

            this.UpdateData(data, model as DbMobilePhone);
            this.UpdateData(data, model as DbFixedPhone);
        }