2024-04-29 18:23:47 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2024-04-29 20:07:03 +04:00
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
2024-04-29 18:23:47 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityDatabaseImplement.Models
|
|
|
|
|
{
|
|
|
|
|
public class CostByPurchase : CostByPurchaseModel
|
|
|
|
|
{
|
|
|
|
|
[Required]
|
|
|
|
|
public Cost? Cost { get; private set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public Purchase? Purchase { get; private set; }
|
|
|
|
|
}
|
|
|
|
|
}
|