Files
xCategoryService/Interfaces/Entities/IXSubCategoryKeyGenerator.cs

8 lines
213 B
C#

using xCategoryService.Models.Entities;
using xDataService.Interfaces;
namespace xCategoryService.Interfaces.Entities
{
public interface IXSubCategoryKeyGenerator : IXKeyGenerator<XSubCategory, int>
{ }
}