@{ /****************************************************************************** // Canary Islands Computer Museum Website // ---------------------------------------------------------------------------- // // Filename : Index.cshtml // Author(s) : Natalia Portillo // // --[ Description ] ---------------------------------------------------------- // // Admin view index // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } @using Cicm.Database.Models @model IEnumerable @{ ViewData["Title"] = "Sound synthetizers (Admin)"; }

Sound synthetizers

Create New

@foreach(SoundSynth item in Model) { }
@Html.DisplayNameFor(model => model.Name) @Html.DisplayNameFor(model => model.ModelCode) @Html.DisplayNameFor(model => model.Introduced) @Html.DisplayNameFor(model => model.Voices) @Html.DisplayNameFor(model => model.Frequency) @Html.DisplayNameFor(model => model.Depth) @Html.DisplayNameFor(model => model.SquareWave) @Html.DisplayNameFor(model => model.WhiteNoise) @Html.DisplayNameFor(model => model.Type) @Html.DisplayNameFor(model => model.Company)
@Html.DisplayFor(modelItem => item.Name) @Html.DisplayFor(modelItem => item.ModelCode) @Html.DisplayFor(modelItem => item.Introduced) @Html.DisplayFor(modelItem => item.Voices) @Html.DisplayFor(modelItem => item.Frequency) @Html.DisplayFor(modelItem => item.Depth) @Html.DisplayFor(modelItem => item.SquareWave) @Html.DisplayFor(modelItem => item.WhiteNoise) @Html.DisplayFor(modelItem => item.Type) @Html.DisplayFor(modelItem => item.Company.Name) Details Edit Delete