예제 #1
0
 public bool Update( string SponsorName,  int ConferenceId,  string SponsorType,  string SponsorImage,  int Original_SponsorId)
 {
     SponsorsDAC sponsorsComponent = new SponsorsDAC();
     return sponsorsComponent.UpdateSponsors( SponsorName,  ConferenceId,  SponsorType,  SponsorImage,  Original_SponsorId);
 }
예제 #2
0
 public bool Update(Sponsors sponsors ,int old_sponsorId)
 {
     SponsorsDAC sponsorsComponent = new SponsorsDAC();
     return sponsorsComponent.UpdateSponsors( sponsors.SponsorName,  sponsors.ConferenceId,  sponsors.SponsorType,  sponsors.SponsorImage,  old_sponsorId);
 }