Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes #17

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Added BookBase as base class for book and updated models Book and Boo…
…kExtended to use it.
theSurferDK committed Jun 6, 2021
commit a0c4d1c9a8d7ead515b0213e1d6836760acee9aa
16 changes: 16 additions & 0 deletions BookApp/Models/BookBase.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;

/* This class contains the base elements of Book and BookExtended. */

namespace Models
{
public class BookBase
{
public Guid Id { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public string Content { get; set; }
public DateTime CreatedDatetime { get; set; }
public Guid UserId { get; set; }
}
}
12 changes: 4 additions & 8 deletions BookApp/Models/DomainModels/Book.cs
Original file line number Diff line number Diff line change
@@ -4,14 +4,10 @@
using System.Text;
using System.Threading.Tasks;

namespace Models.DomainModels {
public class Book {
public Guid Id { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public string Content { get; set; }
public DateTime CreatedDatetime { get; set; }
public Guid UserId { get; set; }
namespace Models.DomainModels
{
public class Book : BookBase
{
public User User { get; set; }
}
}
12 changes: 4 additions & 8 deletions BookApp/Models/ExtendedModels/BookExtended.cs
Original file line number Diff line number Diff line change
@@ -4,14 +4,10 @@
using System.Text;
using System.Threading.Tasks;

namespace Models.ExtendedModels {
public class BookExtended {
public Guid Id { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public string Content { get; set; }
public DateTime CreatedDatetime { get; set; }
public Guid UserId { get; set; }
namespace Models.ExtendedModels
{
public class BookExtended : BookBase
{
public string UserName { get; set; }
public IEnumerable<BookExtended> MoreUserBooks { get; set; }
}
1 change: 1 addition & 0 deletions BookApp/Models/Models.csproj
Original file line number Diff line number Diff line change
@@ -40,6 +40,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BookBase.cs" />
<Compile Include="Class1.cs" />
<Compile Include="DomainModels\Book.cs" />
<Compile Include="DomainModels\User.cs" />