Exemple #1
0
 public bool Update( string AddressLine1,  string AddressLine2,  string AddressLine3,  string CountryRegionCode,  string City,  int StateProvinceId,  string PostalCode,  string ZipCode,  string SpatialLocation,  Guid RowGuid,  DateTime ModifiedDate,  int Original_AddressId)
 {
     AddressDAC addressComponent = new AddressDAC();
     return addressComponent.UpdateAddress( AddressLine1,  AddressLine2,  AddressLine3,  CountryRegionCode,  City,  StateProvinceId,  PostalCode,  ZipCode,  SpatialLocation,  RowGuid,  ModifiedDate,  Original_AddressId);
 }
Exemple #2
0
 public bool Update(Address address ,int old_addressId)
 {
     AddressDAC addressComponent = new AddressDAC();
     return addressComponent.UpdateAddress( address.AddressLine1,  address.AddressLine2,  address.AddressLine3,  address.CountryRegionCode,  address.City,  address.StateProvinceId,  address.PostalCode,  address.ZipCode,  address.SpatialLocation,  address.RowGuid,  address.ModifiedDate,  old_addressId);
 }