/// <summary> /// Deprecated Method for adding a new object to the RekordyTabele EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToRekordyTabele(RekordyTabele rekordyTabele) { base.AddObject("RekordyTabele", rekordyTabele); }
public ActionResult CreateNew(int rodzaj, int tabela) { var tableToCreate = new Tabele.Models.RekordyTabele(); tableToCreate.rodzaj = rodzaj; tableToCreate.idTabela = tabela; tableToCreate.uwagi = ""; var query = (from m in _db.Istotnosc select m); ViewBag.Managers = new SelectList(query, "idIstotnosc", "nazwa"); var query1 = (from m in _db.Cechy select m); ViewBag.ManagersCechy = new SelectList(query1, "idCecha", "nazwa"); return View(tableToCreate); }
/// <summary> /// Create a new RekordyTabele object. /// </summary> /// <param name="idRekord">Initial value of the idRekord property.</param> /// <param name="rodzaj">Initial value of the rodzaj property.</param> /// <param name="uwagi">Initial value of the uwagi property.</param> /// <param name="istotnosc">Initial value of the istotnosc property.</param> /// <param name="idTabela">Initial value of the idTabela property.</param> /// <param name="cecha">Initial value of the cecha property.</param> public static RekordyTabele CreateRekordyTabele(global::System.Int32 idRekord, global::System.Int32 rodzaj, global::System.String uwagi, global::System.Int32 istotnosc, global::System.Int32 idTabela, global::System.Int32 cecha) { RekordyTabele rekordyTabele = new RekordyTabele(); rekordyTabele.idRekord = idRekord; rekordyTabele.rodzaj = rodzaj; rekordyTabele.uwagi = uwagi; rekordyTabele.istotnosc = istotnosc; rekordyTabele.idTabela = idTabela; rekordyTabele.cecha = cecha; return rekordyTabele; }