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