Beispiel #1
0
 public void UpdateRSVP(RSVP rsvp, int lastId, string lastGUID)
 {
     RSVPRepository.UpdateRSVP(rsvp, lastId, lastGUID);
 }
Beispiel #2
0
 public RSVP GetCurrentRSVPByGUID(string guid)
 {
     return(RSVPRepository.GetCurrentRSVPByGUID(guid));
 }
Beispiel #3
0
 public List <RSVP> TakeRSVP(int numGuestbooks)
 {
     return(RSVPRepository.GetRSVPs(numGuestbooks));
 }
Beispiel #4
0
 public List <RSVP> GetRSVPs()
 {
     return(RSVPRepository.GetRSVPs(null));
 }
Beispiel #5
0
 public void InsertRSVP(RSVP guestBook)
 {
     RSVPRepository.InsertRSVP(guestBook);
 }