Пример #1
0
 public bool Delete(MyBet entity)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the MyBets EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToMyBets(MyBet myBet)
 {
     base.AddObject("MyBets", myBet);
 }
Пример #3
0
 public void Insert(MyBet entity)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 /// <summary>
 /// Create a new MyBet object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="isWon">Initial value of the IsWon property.</param>
 /// <param name="price">Initial value of the Price property.</param>
 /// <param name="stake">Initial value of the Stake property.</param>
 public static MyBet CreateMyBet(global::System.Int64 id, global::System.Boolean isWon, global::System.Decimal price, global::System.Decimal stake)
 {
     MyBet myBet = new MyBet();
     myBet.ID = id;
     myBet.IsWon = isWon;
     myBet.Price = price;
     myBet.Stake = stake;
     return myBet;
 }