internal static void ToOrmProfile(DalProfile dalprofile, OrmProfile ormprofile) { ormprofile.Receiver = dalprofile.Receiver; ormprofile.OrmCountryId = dalprofile.CountryId; ormprofile.City = dalprofile.City; ormprofile.Address = dalprofile.Address; ormprofile.Phone = dalprofile.Phone; }
internal static DalProfile ToDalProfile(OrmProfile ormprofile) { if (ormprofile!=null) return new DalProfile() { Receiver = ormprofile.Receiver, CountryId = ormprofile.OrmCountryId, City = ormprofile.City, Address = ormprofile.Address, Phone = ormprofile.Phone }; return null; }