ну теперь точно переименование

This commit is contained in:
ValAnn 2024-05-05 02:53:02 +04:00
parent 13b1baf5cb
commit 2efc894170

View File

@ -15,7 +15,7 @@ using System.Threading.Tasks;
namespace HospitalBusinessLogic.BusinessLogics
{
public class DoctorReportLogic : IDoctorReportLogic
public class ReportLogicDoctor : IDoctorReportLogic
{
private readonly IPatientStorage _patientStorage;
@ -24,7 +24,7 @@ namespace HospitalBusinessLogic.BusinessLogics
private readonly IRecipeStorage _recipeStorage;
private readonly IDiseaseStorage _diseaseStorage;
public DoctorReportLogic(IPatientStorage patientStorage, IMedicineStorage medicineStorage, IProcedureStorage procedureStorage, IRecipeStorage recipeStorage, IDiseaseStorage diseaseStorage)
public ReportLogicDoctor(IPatientStorage patientStorage, IMedicineStorage medicineStorage, IProcedureStorage procedureStorage, IRecipeStorage recipeStorage, IDiseaseStorage diseaseStorage)
{
_patientStorage = patientStorage;