- Add all HardCoded Strings in Constants ... - Apply Resolve Constant Replacement Side Affects ... - add Support for Service Main Provider ...
18 lines
583 B
C#
18 lines
583 B
C#
using xCategoryService.Constants;
|
|
using xCategoryService.Interfaces;
|
|
using xStringService.Interfaces.Dtos;
|
|
using xStringService.Providers;
|
|
|
|
namespace xCategoryService.Providers
|
|
{
|
|
public class XCategoryDescriptionResourceProvider : XBaseItemResourceProvider, IXCategoryDescriptionResourceProvider
|
|
{
|
|
public XCategoryDescriptionResourceProvider(
|
|
IXStringServiceProvider stringProvider
|
|
) : base(
|
|
stringProvider: stringProvider,
|
|
item: XCategoryServiceConstants.CategoryDescriptionResourceIdentifier
|
|
)
|
|
{ }
|
|
}
|
|
} |