Esempio n. 1
0
 public void AddToAllstarWithNames(AllstarWithName allstarWithName)
 {
     base.AddObject("AllstarWithNames", allstarWithName);
 }
Esempio n. 2
0
 public static AllstarWithName CreateAllstarWithName(string playerID, short yearID)
 {
     AllstarWithName allstarWithName = new AllstarWithName();
     allstarWithName.playerID = playerID;
     allstarWithName.yearID = yearID;
     return allstarWithName;
 }