PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicBusinessLogic/BusinessLogics/MedicamentLogic.cs

36 lines
969 B
C#

using PolyclinicContracts.BindingModels;
using PolyclinicContracts.BusinessLogicsContracts;
using PolyclinicContracts.SearchModels;
using PolyclinicContracts.ViewModels;
namespace PolyclinicBusinessLogic.BusinessLogics
{
public class MedicamentLogic : IMedicamentLogic
{
public bool Create(MedicamentBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(MedicamentBindingModel model)
{
throw new NotImplementedException();
}
public MedicamentViewModel? ReadElement(MedicamentSearchModel model)
{
throw new NotImplementedException();
}
public List<MedicamentViewModel>? ReadList(MedicamentSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(MedicamentBindingModel model)
{
throw new NotImplementedException();
}
}
}