Add support of Tag and File Provider to Webinar Provider ...

required to Implement Uploading ...
This commit is contained in:
2025-12-08 17:27:52 +03:30
parent 44454e97ec
commit c9875032aa
8 changed files with 470 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using xFileService.Interfaces;
using xFileService.Providers;
using xWebinarService.Interfaces;
using xWebinarService.Models.Entities;
namespace xWebinarService.Providers
{
public class XWebinarFileProvider : XBaseFileProvider<Guid>, IXWebinarFileProvider
{
public XWebinarFileProvider(
IXFileProvider provider
) : base(
providedFor: nameof(XWebinar),
provider: provider
)
{ }
}
}