Identity Rescafolding and DBContext changes

This commit is contained in:
Dimitar Todorov
2022-04-04 22:48:32 +03:00
parent 0ab907582c
commit 9b29101c2d
53 changed files with 1250 additions and 339 deletions

View File

@@ -1,5 +1,7 @@
using System;
using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -9,13 +11,13 @@ namespace Data.Entities
public class Rents
{
public int Id { get; set; }
[ForeignKey("Car")]
public int CarId { get; set; }
public virtual Car Car { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
[ForeignKey("User")]
public string UserId { get; set; }
public virtual User User { get; set; }
}
}