using FurnitureContracts.BindingModels; using FurnitureContracts.SearchModels; using FurnitureContracts.ViewModel; namespace FurnitureContracts.BusinessLogicsContracts { public interface IRoleLogic { List? ReadList(RoleSearchModel? model); RoleViewModel? ReadElement(RoleSearchModel model); bool Create(RoleBindingModel model); bool Update(RoleBindingModel model); bool Delete(RoleBindingModel model); } }