Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
ASP.NET Core 2 Fundamentals

You're reading from   ASP.NET Core 2 Fundamentals Build cross-platform apps and dynamic web services with this server-side web application framework

Arrow left icon
Product type Paperback
Published in Aug 2018
Publisher
ISBN-13 9781789538915
Length 298 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Onur Gumus Onur Gumus
Author Profile Icon Onur Gumus
Onur Gumus
Mugilan T. S. Ragupathi Mugilan T. S. Ragupathi
Author Profile Icon Mugilan T. S. Ragupathi
Mugilan T. S. Ragupathi
Arrow right icon
View More author details
Toc

Creating the Entities


Now that we have our dependencies clarified, we can start creating our entities. You can delete existing Class1.cs files in the libraries.

Follow these steps to create the entities for Rest Buy:

  1. Create an Entities folder in the RestBuy project as shown in the following screenshot:
  1. Inside the Entities folder we need to create four classes:
    • BaseEntity: This is the base class for all our entities
    • Order: This class will contain the logic behind the ordering of products.
    • OrderItem: This class is for containing order details.
    • Product: This class is for containing details of the products.
    • StockAmount: This class represents how many products are left in the store of a type.
  2. Have this code inside BaseEntity:

Note

Go to https://goo.gl/E8DaGb to access the code.

using System;
using System.Collections.Generic;
using System.Text;
namespace RestBuy.Entities
public abstract class BaseEntity
{
  protected int id;
  public int Id => this.id;
}
}
  1. Have this code inside Order:

Note

Go to https...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime