refactor and add using constants instead of hard coded strings ...

This commit is contained in:
2026-07-30 14:26:51 +03:30
parent 651fde1cd8
commit 9c101a63eb
7 changed files with 49 additions and 14 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
using System;
using xFileService.Constants;
using xFileService.Interfaces;
using xFileService.Models.Entities;
using xTagService.Interfaces.Dtos;
using xTagService.Providers;
@@ -11,8 +11,8 @@ namespace xFileService.Providers
public XFileTagProvider(
IXTagServiceProvider tagProvider
) : base(
providedFor: nameof(XFile),
tagProvider: tagProvider
tagProvider: tagProvider,
providedFor: XFileServiceConstants.XFileTagProvided
)
{ }
}