using System.Collections.Generic; using System.Linq; using _0_Framework_b.Domain; namespace Company.Domain.AndroidApkVersionAgg; public interface IAndroidApkVersionRepository:IRepository { IQueryable GetActives(); void Remove(AndroidApkVersion entity); System.Threading.Tasks.Task GetLatestActiveVersionPath(); }