2024-05-02 00:03:06 +04:00
|
|
|
|
using PolyclinicDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportProceduresViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Procedure { get; set; }
|
|
|
|
|
public DateTime DateStartProcedure { get; set; }
|
|
|
|
|
public DateTime DateStopProcedure { get; set;}
|
2024-05-02 00:46:07 +04:00
|
|
|
|
public List<(string medicamentName, string symptomName)> MedicamentSymptom { get; set; } = new();
|
2024-05-02 00:03:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|