using Contracts.BindingModels; using Contracts.SearchModels; using Contracts.ViewModels; namespace Contracts.BusinessLogicContracts { public interface ICityStatusLogic { List? ReadList(CitySearchModel? model); CityViewModel? ReadElement(CitySearchModel model); bool Create(CityBindingModel model); bool Update(CityBindingModel model); bool Delete(CityBindingModel model); } }