Ejemplo n.º 1
0
        public static string GetDisplaySiteName(SiteName siteName)
        {
            switch (siteName)
            {
            case SiteName.PokerStars:
                return("Poker Stars");

            case SiteName.PartyPoker:
                return("Party Poker");

            case SiteName.Pacific:
                return("888");

            case SiteName.PokerStarsIt:
                return("Poker Stars It");

            case SiteName.PokerStarsFr:
                return("Poker Stars Fr");

            case SiteName.PokerStarsEs:
                return("Poker Stars Es");

            default:
                return(siteName.ToString());
            }
        }
Ejemplo n.º 2
0
 public GameDescriptor(SiteName siteName,
                       GameType gameType,
                       Buyin buyin,
                       TableType tableType,
                       SeatType seatType)
     : this(PokerFormat.SitAndGo, siteName, gameType, buyin, tableType, seatType)
 {
 }
Ejemplo n.º 3
0
 public GameDescriptor(SiteName siteName,
                       GameType gameType,
                       Limit limit,
                       TableType tableType,
                       SeatType seatType)
     : this(PokerFormat.CashGame, siteName, gameType, limit, tableType, seatType)
 {
 }
Ejemplo n.º 4
0
 public GameDescriptor(SiteName siteName,
                       GameType gameType,
                       string tournamentId,
                       Limit limit,
                       TableType tableType,
                       SeatType seatType)
     : this(PokerFormat.SitAndGo, siteName, gameType, tournamentId, limit, tableType, seatType)
 {
 }
Ejemplo n.º 5
0
 public GameDescriptor(PokerFormat pokerFormat,
                       SiteName siteName,
                       GameType gameType,
                       Buyin buyin,
                       TableType tableType,
                       SeatType seatType)
 {
     PokerFormat = pokerFormat;
     Site        = siteName;
     GameType    = gameType;
     Buyin       = buyin;
     TableType   = tableType;
     SeatType    = seatType;
 }
Ejemplo n.º 6
0
 public GameDescriptor(PokerFormat pokerFormat,
                       SiteName siteName,
                       GameType gameType,
                       Limit limit,
                       TableType tableType,
                       SeatType seatType)
 {
     PokerFormat = pokerFormat;
     Site        = siteName;
     GameType    = gameType;
     Limit       = limit;
     TableType   = tableType;
     SeatType    = seatType;
 }
Ejemplo n.º 7
0
 public GameDescriptor(PokerFormat pokerFormat,
                       SiteName siteName,
                       GameType gameType,
                       string tournamentId,
                       Limit limit,
                       TableType tableType,
                       SeatType seatType)
 {
     PokerFormat  = pokerFormat;
     Site         = siteName;
     TournamentId = tournamentId;
     Limit        = limit;
     GameType     = gameType;
     TableType    = tableType;
     SeatType     = seatType;
 }