Get Specified Item Tags ...

This commit is contained in:
2026-05-28 07:33:31 +03:30
parent 93aafe24f8
commit 64afaccafa
7 changed files with 156 additions and 1 deletions
@@ -0,0 +1,35 @@
using System;
using System.Linq;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.Extensions.Logging;
using xCommons.Configurations;
using xCommons.Providers;
using xIdentityService.Interfaces;
using xFileService.Controllers;
using xFileService.Interfaces.Dtos;
using xFileService.Models.Entities;
namespace xServices.Controllers
{
public class XFileServiceProviderController : XFileServiceProviderControllerBase
{
public XFileServiceProviderController(
ILogger<XFileServiceProviderController> logger,
XAppConfiguration appConfiguration,
IXIdentityProvider identityProvider,
XValidationProvider validationProvider,
IXFileServiceProvider provider,
Func<IQueryable<XFile>, IOrderedQueryable<XFile>> defaultOrderBuilder = null,
Func<IQueryable<XFile>, IIncludableQueryable<XFile, object>> defaultIncludeBuilder = null
) : base(
logger,
appConfiguration,
identityProvider,
validationProvider,
provider,
defaultOrderBuilder,
defaultIncludeBuilder
)
{ }
}
}