firstCommit

This commit is contained in:
ani_konarcheva@abv.bg
2022-03-25 16:24:21 +02:00
parent 71b378b8ee
commit 982a6a66dd
193 changed files with 63187 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using Data.Entities;
using Microsoft.EntityFrameworkCore;
namespace Data
{
public class RentACarDbContext
{
public virtual DbSet<User> Users { get; set; }
public virtual DbSet<Car> Cars { get; set; }
public virtual DbSet<Role> Roles { get; set; }
public virtual DbSet<Rents> Request { get; set; }
}
}