Добавили модели и интерфейсы логики для отчетов #13

Merged
ekallin merged 9 commits from stage7_user_web_interface_prototype into main 2024-05-02 02:45:34 +04:00
2 changed files with 29 additions and 0 deletions
Showing only changes of commit 63fc491029 - Show all commits

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicContracts.ViewModels
{
public class ReportCoursesByProcedures
{
}
}

View File

@ -0,0 +1,17 @@
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;}
public List<(string, string)> MedicamentSymptom { get; set; } = new();
}
}