23 lines
587 B
C#
23 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarRepairShopDatabaseImplement.Models
|
|
{
|
|
public class ShopRepair
|
|
{
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public int RepairId { get; set; }
|
|
[Required]
|
|
public int ShopId { get; set; }
|
|
[Required]
|
|
public int Count { get; set; }
|
|
public virtual Shop Shop { get; set; } = new();
|
|
public virtual Repair Repair { get; set; } = new();
|
|
}
|
|
}
|