This commit is contained in:
King
2025-09-28 15:24:13 +03:30
parent 514b3a5975
commit 4241523443
222 changed files with 8139 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using CMSMicroservice.Protobuf.Protos.Package;
using FMSMicroservice.Protobuf.Protos.FileInfo;
namespace BackOffice.BFF.Application.Common.Interfaces;
public interface IApplicationContractContext
{
#region FM
FileInfoContract.FileInfoContractClient FileInfos { get; }
#endregion
#region CMS
PackageContract.PackageContractClient Packages { get; }
#endregion
}

View File

@@ -0,0 +1,6 @@
namespace BackOffice.BFF.Application.Common.Interfaces;
public interface ICurrentUserService
{
string? UserId { get; }
}

View File

@@ -0,0 +1,6 @@
namespace BackOffice.BFF.Application.Common.Interfaces;
public interface ITokenProvider
{
Task<string> GetTokenAsync();
}