示例#1
0
 public bool Update( string Name,  int ConferenceId,  string MapPath,  int Original_ConferenceHallsId)
 {
     ConferenceHallsDAC conferencehallsComponent = new ConferenceHallsDAC();
     return conferencehallsComponent.UpdateConferenceHalls( Name,  ConferenceId,  MapPath,  Original_ConferenceHallsId);
 }
示例#2
0
 public bool Update(ConferenceHalls conferencehalls ,int old_conferenceHallsId)
 {
     ConferenceHallsDAC conferencehallsComponent = new ConferenceHallsDAC();
     return conferencehallsComponent.UpdateConferenceHalls( conferencehalls.Name,  conferencehalls.ConferenceId,  conferencehalls.MapPath,  old_conferenceHallsId);
 }