コード例 #1
0
 public UpdateRatingCommand(string uniqueKey, uint? rating, string customParams, AccountContext accountContext)
     : base(accountContext)
 {
     _uniqueKey = uniqueKey;
     _rating = rating;
     _customParams = customParams;
 }
コード例 #2
0
 public GetRatingAverageQuery(AccountContext accountContext, string uniqueKey)
     : base(accountContext)
 {
     this.uniqueKey = uniqueKey;
 }
コード例 #3
0
 public AuthorisationCredentialsCommand(AccountContext accountContext, IPAddress ipAddress)
     : base(accountContext)
 {
     this.ipAddress = ipAddress;
 }
コード例 #4
0
 public GetAllRatingsAverageQuery(AccountContext accountContext)
     : base(accountContext)
 {
 }
コード例 #5
0
 public GetUserAccountByKeyQuery(AccountContext accountContext)
     : base(accountContext)
 {
 }
コード例 #6
0
 protected WithAccountContext(AccountContext accountContext)
 {
     if (accountContext == null) throw new ArgumentNullException("accountContext", "Account context cannot be null.");
     this.accountContext = accountContext;
 }