Example #1
0
 protected String GetStatusImageUrl(InOutNoshow status)
 {
     if (status == InOutNoshow.In)
     {
         return("~/Icons/In.png");
     }
     else if (status == InOutNoshow.Out)
     {
         return("~/Icons/Out.png");
     }
     else
     {
         return("~/Icons/noShow.png");
     }
 }
Example #2
0
 public Attendee(String playerId, InOutNoshow status)
 {
     this.playerId = playerId;
     this.status   = status;
 }