feat: add UserManagementService feat: add CopmanyDriver relation and DriverManagementService chore: pupulate database seeding class fix: add review filtering by CompanyId
14 lines
356 B
C#
14 lines
356 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Server.Models;
|
|
|
|
public class CompanyDriver
|
|
{
|
|
[ForeignKey("UserId")]
|
|
public string DriverId { get; set; } = null!;
|
|
public User Driver { get; set; } = null!;
|
|
|
|
[ForeignKey("CompanyId")]
|
|
public int CompanyId { get; set; }
|
|
public Company Company { get; set; } = null!;
|
|
} |