/// <summary>
 /// Deprecated Method for adding a new object to the Merchandisers EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToMerchandisers(Merchandiser merchandiser)
 {
     base.AddObject("Merchandisers", merchandiser);
 }
 public ActionResult Merch(Merchandiser m)
 {
     return View();
 }
 /// <summary>
 /// Create a new Merchandiser object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="pass">Initial value of the Pass property.</param>
 public static Merchandiser CreateMerchandiser(global::System.Int32 id, global::System.String name, global::System.String pass)
 {
     Merchandiser merchandiser = new Merchandiser();
     merchandiser.ID = id;
     merchandiser.Name = name;
     merchandiser.Pass = pass;
     return merchandiser;
 }