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
+32
View File
@@ -0,0 +1,32 @@
using System;
using System.Linq;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.Extensions.Logging;
using xCommons.Configurations;
using xCommons.Providers;
using xFileService.Controllers;
using xFileService.Interfaces.Entities;
using xFileService.Models.Entities;
namespace xServices.Controllers
{
public class XFileRepositoryController : XFileRepositoryControllerBase
{
public XFileRepositoryController(
ILogger<XFileRepositoryController> logger,
XAppConfiguration appConfiguration,
XValidationProvider validationProvider,
IXFileRepository repository,
Func<IQueryable<XFile>, IOrderedQueryable<XFile>> defaultOrderBuilder = null,
Func<IQueryable<XFile>, IIncludableQueryable<XFile, object>> defaultIncludeBuilder = null
) : base(
logger,
appConfiguration,
validationProvider,
repository,
defaultOrderBuilder,
defaultIncludeBuilder
)
{ }
}
}