コード例 #1
0
 public StoreRequest(String storeRequestID, String userID, StoreRawData storeData)
 {
     this.storeRequestID = storeRequestID;
     this.userID         = userID;
     this.storeData      = storeData;
 }
コード例 #2
0
 public UserStoreData(String UserID, StoreRawData storeData, Statistics storeStatistics)
 {
     this.UserID          = UserID;
     this.storeData       = storeData;
     this.storeStatistics = storeStatistics;
 }
コード例 #3
0
 public StoreRequest()
 {
     this.storeRequestID = null;
     this.userID         = null;
     this.storeData      = new StoreRawData();
 }
コード例 #4
0
 public UserStoreData()
 {
     this.UserID          = null;
     this.storeData       = new StoreRawData();
     this.storeStatistics = new Statistics();
 }