2024-04-17 17:43:28 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
2024-04-17 21:55:50 +04:00
|
|
|
|
public interface IRecieptModel : IId
|
2024-04-17 17:43:28 +04:00
|
|
|
|
{
|
|
|
|
|
int CountProcedures { get; set; }
|
|
|
|
|
string Comment { get; set; }
|
2024-04-17 21:55:50 +04:00
|
|
|
|
Dictionary<int, (ICourseModel, int)> RecieptCourse { get; }
|
2024-04-17 17:43:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|