12 lines
380 B
C#
12 lines
380 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using _0_Framework_b.Domain;
|
|
|
|
namespace Company.Domain.AndroidApkVersionAgg;
|
|
|
|
public interface IAndroidApkVersionRepository:IRepository<long,AndroidApkVersion>
|
|
{
|
|
IQueryable<AndroidApkVersion> GetActives();
|
|
void Remove(AndroidApkVersion entity);
|
|
System.Threading.Tasks.Task<string> GetLatestActiveVersionPath();
|
|
} |