Add project files.

This commit is contained in:
2019-11-10 20:26:59 +01:00
parent 39dc8d2cc9
commit 387bb252d1
23 changed files with 889 additions and 0 deletions

View File

@ -0,0 +1,34 @@
namespace CodeFirstExistingDatabase
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
public partial class Courses
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Courses()
{
Tags = new HashSet<Tags>();
}
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int Level { get; set; }
public float FullPrice { get; set; }
public int? Author_Id { get; set; }
public virtual Authors Authors { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Tags> Tags { get; set; }
}
}