Exemple #1
0
 public RoyalePublisher(Guid publisherID, RoyaleYearQuarter yearQuarter, FantasyCriticUser user,
                        string publisherName, IEnumerable <RoyalePublisherGame> publisherGames, decimal budget)
 {
     PublisherID    = publisherID;
     YearQuarter    = yearQuarter;
     User           = user;
     PublisherName  = publisherName;
     PublisherGames = publisherGames.ToList();
     Budget         = budget;
 }
Exemple #2
0
 public RoyalePublisherGame(Guid publisherID, RoyaleYearQuarter yearQuarter, MasterGameYear masterGame, Instant timestamp,
                            decimal amountSpent, decimal advertisingMoney, decimal?fantasyPoints)
 {
     PublisherID      = publisherID;
     YearQuarter      = yearQuarter;
     MasterGame       = masterGame;
     Timestamp        = timestamp;
     AmountSpent      = amountSpent;
     AdvertisingMoney = advertisingMoney;
     FantasyPoints    = fantasyPoints;
 }