using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using _0_Framework.Domain; using CompanyManagment.App.Contracts.Zone; namespace Company.Domain.ZoneAgg; public interface IZoneRepository: IRepository { List GetAllZones(); List GetZoneListByCityId(int cityId); EditZone GetDetails(long id); List Search(ZoneSearchModel searchModel); }