PIbd-22_Bazunov_AI_Hotel/Hotel/HotelContracts/BusinessLogicsContracts/ICleaningInstrumentsLogic.cs
2023-04-06 18:19:36 +04:00

14 lines
547 B
C#

using HotelContracts.BindingModels;
using HotelContracts.SearchModels;
using HotelContracts.ViewModels;
namespace HotelContracts.BusinessLogicsContracts;
public interface ICleaningInstrumentsLogic
{
List<CleaningInstrumentsViewModel>? ReadList(CleaningInstrumentsSearchModel? model);
CleaningInstrumentsViewModel? ReadElement(CleaningInstrumentsSearchModel model);
bool Create(CleaningInstrumentsBindingModel model);
bool Update(CleaningInstrumentsBindingModel model);
bool Delete(CleaningInstrumentsBindingModel model);
}