36 lines
960 B
C#
36 lines
960 B
C#
|
using PolyclinicContracts.BindingModels;
|
|||
|
using PolyclinicContracts.BusinessLogicsContracts;
|
|||
|
using PolyclinicContracts.SearchModels;
|
|||
|
using PolyclinicContracts.ViewModels;
|
|||
|
|
|||
|
namespace PolyclinicBusinessLogic.BusinessLogics
|
|||
|
{
|
|||
|
public class ProcedureLogic : IProcedureLogic
|
|||
|
{
|
|||
|
public bool Create(ProcedureBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool Delete(ProcedureBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public ProcedureViewModel? ReadElement(ProcedureSearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<ProcedureViewModel>? ReadList(ProcedureSearchModel? model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool Update(ProcedureBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|