diff --git a/ChristopherDemos/MusicStore/ViewModels/AlbumCreateViewModel.cs b/ChristopherDemos/MusicStore/ViewModels/AlbumCreateViewModel.cs
new file mode 100644
index 0000000..8109a41
--- /dev/null
+++ b/ChristopherDemos/MusicStore/ViewModels/AlbumCreateViewModel.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MusicStore.ViewModels
+{
+ public class AlbumCreateViewModel
+ {
+ public string AlbumTitle { get; set; }
+ public string ArtistName { get; set; }
+ }
+}
diff --git a/ChristopherDemos/MusicStore/Views/Artists/Edit.cshtml b/ChristopherDemos/MusicStore/Views/Artists/Edit.cshtml
new file mode 100644
index 0000000..3fd3f07
--- /dev/null
+++ b/ChristopherDemos/MusicStore/Views/Artists/Edit.cshtml
@@ -0,0 +1,49 @@
+@model MusicStore.Models.Artist
+
+@{
+ ViewBag.Title = "Edit";
+}
+
+
+
+Edit
+
+@if (!String.IsNullOrEmpty(ViewBag.Message)) {
+ @ViewBag.Message
+}
+
+@using (Html.BeginForm())
+{
+ @Html.AntiForgeryToken()
+
+
+}
+
+
+ @Html.ActionLink("Back to List", "Index")
+
+
+@section Scripts {
+ @Scripts.Render("~/bundles/jqueryval")
+}
diff --git a/ChristopherDemos/MusicStore/Web.config b/ChristopherDemos/MusicStore/Web.config
index 2ae0398..808ccc9 100644
--- a/ChristopherDemos/MusicStore/Web.config
+++ b/ChristopherDemos/MusicStore/Web.config
@@ -4,82 +4,82 @@
http://go.microsoft.com/fwlink/?LinkId=301880
-->
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file