2024-04-28 18:13:52 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDatabaseImplement.Models
|
2024-04-28 16:24:52 +04:00
|
|
|
|
{
|
2024-04-30 16:20:00 +04:00
|
|
|
|
public class RecipeProcedure
|
2024-04-28 16:24:52 +04:00
|
|
|
|
{
|
2024-04-28 18:13:52 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int ProcedureId { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int RecipeId { get; set; }
|
2024-05-29 13:55:20 +04:00
|
|
|
|
public virtual Procedure? Procedure { get; set; }
|
|
|
|
|
public virtual Recipe? Recipe { get; set; }
|
2024-04-28 16:24:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|