public EventGuestRepository(RollCallContext context)
 {
     this.context = context;
     service      = new EventGuestService(this);
 }
 public EventGuestRepository()
 {
     context = new RollCallContext();
     service = new EventGuestService(this);
 }