예제 #1
0
 public bool Update( string Name,  string Description,  string Location,  int Star,  string URL,  string Phone,  string Fax,  string Email,  int LanguageID,  int ParentID,  int Original_ID)
 {
     HotelLanguageDAC hotellanguageComponent = new HotelLanguageDAC();
     return hotellanguageComponent.UpdateHotelLanguage( Name,  Description,  Location,  Star,  URL,  Phone,  Fax,  Email,  LanguageID,  ParentID,  Original_ID);
 }
예제 #2
0
 public bool Update(HotelLanguage hotellanguage ,int old_iD)
 {
     HotelLanguageDAC hotellanguageComponent = new HotelLanguageDAC();
     return hotellanguageComponent.UpdateHotelLanguage( hotellanguage.Name,  hotellanguage.Description,  hotellanguage.Location,  hotellanguage.Star,  hotellanguage.URL,  hotellanguage.Phone,  hotellanguage.Fax,  hotellanguage.Email,  hotellanguage.LanguageID,  hotellanguage.ParentID,  old_iD);
 }