16 lines
497 B
C#
16 lines
497 B
C#
using HospitalContracts.BindingModels;
|
|
using HospitalContracts.SearchModels;
|
|
using HospitalContracts.ViewModels;
|
|
|
|
namespace HospitalContracts.BusinessLogicContracts
|
|
{
|
|
public interface IPatientLogic
|
|
{
|
|
List<PatientViewModel>? ReadList(PatientSearchModel? model);
|
|
PatientViewModel? ReadElement(PatientSearchModel model);
|
|
bool Create(PatientBindingModel model);
|
|
bool Update(PatientBindingModel model);
|
|
bool Delete(PatientBindingModel model);
|
|
}
|
|
}
|