2023-04-09 13:00:51 +04:00
|
|
|
|
using CanteenContracts.ViewModels;
|
|
|
|
|
using System;
|
2023-04-07 10:55:40 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CanteenDatabaseImplement.Models
|
|
|
|
|
{
|
2023-04-09 00:34:25 +04:00
|
|
|
|
public class LunchOrder
|
2023-04-07 10:55:40 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Required]
|
2023-04-07 18:58:07 +04:00
|
|
|
|
public int LunchId { get; set; }
|
|
|
|
|
[Required]
|
2023-04-09 00:34:25 +04:00
|
|
|
|
public int OrderId { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int CountOrders { get; set; }
|
2023-04-07 18:58:07 +04:00
|
|
|
|
public virtual Lunch Lunch { get; set; } = new();
|
2023-04-09 00:34:25 +04:00
|
|
|
|
public virtual Order Order { get; set; } = new();
|
2023-04-09 13:00:51 +04:00
|
|
|
|
public LunchOrderViewModel GetViewModel => new()
|
|
|
|
|
{
|
|
|
|
|
Id = Id,
|
|
|
|
|
LunchId = LunchId,
|
|
|
|
|
OrderId = OrderId
|
|
|
|
|
};
|
2023-04-07 10:55:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|