17 lines
488 B
C#
17 lines
488 B
C#
using xCategoryService.Interfaces;
|
|
using xStringService.Interfaces.Dtos;
|
|
using xStringService.Providers;
|
|
|
|
namespace xCategoryService.Providers
|
|
{
|
|
public class XSubCategoryDescriptionResourceProvider : XBaseItemResourceProvider, IXSubCategoryDescriptionResourceProvider
|
|
{
|
|
public XSubCategoryDescriptionResourceProvider(
|
|
IXStringServiceProvider stringProvider
|
|
) : base(
|
|
item: "SubCatD",
|
|
stringProvider
|
|
)
|
|
{ }
|
|
}
|
|
} |