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.Dtos;
using xFileService.Models.Entities;
namespace xServices.Controllers
{
public class XFileServiceController : XFileServiceControllerBase
{
public XFileServiceController(
ILogger<XFileServiceController> logger,
XAppConfiguration appConfiguration,
XValidationProvider validationProvider,
IXFileRepositoryService repositoryService,
Func<IQueryable<XFile>, IOrderedQueryable<XFile>> defaultOrderBuilder = null,
Func<IQueryable<XFile>, IIncludableQueryable<XFile, object>> defaultIncludeBuilder = null
) : base(
logger,
appConfiguration,
validationProvider,
repositoryService,
defaultOrderBuilder,
defaultIncludeBuilder
)
{ }
}
}