16 lines
521 B
C#

using HospitalContracts.BindingModels;
using HospitalContracts.SearchModels;
using HospitalContracts.ViewModels;
namespace HospitalContracts.BusinessLogicContracts
{
public interface IApothecaryLogic
{
List<ApothecaryViewModel>? ReadList(ApothecarySearchModel? model);
ApothecaryViewModel? ReadElement(ApothecarySearchModel model);
bool Create(ApothecaryBindingModel model);
bool Update(ApothecaryBindingModel model);
bool Delete(ApothecaryBindingModel model);
}
}