namespace LaaProduction.Personalization.Repositories.Interfaces { using System.Collections.Generic; internal interface ISoftwareRepository { short AppId(string software); IEnumerable GetSoftwareFunctions(string token); } }