ох мамочки... сделала вьюху отчетов по процедурам в контрактах

This commit is contained in:
Елена Бакальская 2024-05-02 00:03:06 +04:00
parent 4293a44d78
commit 63fc491029
2 changed files with 29 additions and 0 deletions

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();
}
}