using PARR.AIHITMainLoader.Models; namespace PARR.AIHITMainLoader.Services { internal interface IAihitService { IEnumerable? GetPtkData(string respArea); IEnumerable? GetCvkData(string respArea); IEnumerable? GetStoData(string respArea); IEnumerable? GetOrgData(string respArea); IEnumerable? GetRegionalEKData(string respArea); } }