16 lines
521 B
C#
Raw Normal View History

2023-04-05 11:46:14 +04:00
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);
}
}