18 lines
364 B
C#
18 lines
364 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demko6.Models;
|
|||
|
|
|||
|
public partial class EmployeeService
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int EmployeeId { get; set; }
|
|||
|
|
|||
|
public int ServiceId { get; set; }
|
|||
|
|
|||
|
public virtual Employee Employee { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Service Service { get; set; } = null!;
|
|||
|
}
|