SUBD_Labs/BeauySalonContracts/BusinessLogicsContracts/IMasterLogic.cs

16 lines
502 B
C#

using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.ViewModels;
namespace BeautySalonContracts.BusinessLogicsContracts
{
public interface IMasterLogic
{
List<MasterViewModel>? ReadList(MasterSearchModel? model);
MasterViewModel? ReadElement(MasterSearchModel model);
bool Create(MasterBindingModel model);
bool Update(MasterBindingModel model);
bool Delete(MasterBindingModel model);
}
}