Print checkout bug fix - task counter bug fixed - RollCalEmployeeUpload HasEmployee metof aded

This commit is contained in:
SamSys
2024-10-30 21:22:09 +03:30
parent 5df6b99cb1
commit 456025251c
59 changed files with 8447 additions and 352 deletions

View File

@@ -0,0 +1,12 @@
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();
}