feat: add UserManagementService feat: add CopmanyDriver relation and DriverManagementService chore: pupulate database seeding class fix: add review filtering by CompanyId
19 lines
514 B
C#
19 lines
514 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Server.Models;
|
|
|
|
public class Company
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
[ForeignKey("OwnerId")]
|
|
public string OwnerId { get; set; } = null!;
|
|
public User Owner { get; set; } = null!;
|
|
|
|
public virtual IList<Vehicle> Vehicles { get; set; } = null!;
|
|
public virtual IList<CompanyDriver> CompanyDrivers { get; set; } = null!;
|
|
} |