/// <summary>
 /// Create a new CashDesk object.
 /// </summary>
 /// <param name="money">Initial value of the Money property.</param>
 public static CashDesk CreateCashDesk(global::System.Decimal money)
 {
     CashDesk cashDesk = new CashDesk();
     cashDesk.Money = money;
     return cashDesk;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the CashDesks EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCashDesks(CashDesk cashDesk)
 {
     base.AddObject("CashDesks", cashDesk);
 }