19 lines
420 B
C#
Raw Normal View History

2024-04-28 21:13:12 +04:00
using System.ComponentModel.DataAnnotations;
namespace CarCenterDataBaseImplement.Models
{
public class EmployeeSale
{
public int Id { get; set; }
[Required]
public int SaleId { get; set; }
[Required]
public int EmployeeId { get; set; }
public virtual Employee Employee { get; set; } = new();
public virtual Sale Sale { get; set; } = new();
}
}