16 lines
498 B
C#
16 lines
498 B
C#
using HospitalContracts.BindingModels;
|
|
using HospitalContracts.SearchModels;
|
|
using HospitalContracts.ViewModels;
|
|
|
|
namespace HospitalContracts.BusinessLogicsContracts
|
|
{
|
|
public interface ISymptomLogic
|
|
{
|
|
List<SymptomViewModel>? ReadList(SymptomSearchModel? model);
|
|
SymptomViewModel? ReadElement(SymptomSearchModel model);
|
|
bool Create(SymptomBindingModel model);
|
|
bool Update(SymptomBindingModel model);
|
|
bool Delete(SymptomBindingModel model);
|
|
}
|
|
}
|