mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
17 lines
445 B
C#
17 lines
445 B
C#
|
|
using Xzy.KnowledgeBase.Domain.Repositories.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xzy.KnowledgeBase.Domain.Common.DependencyInjection;
|
|
|
|
namespace Xzy.KnowledgeBase.Domain.Repositories
|
|
{
|
|
[ServiceDescription(typeof(IKmss_Repositories), ServiceLifetime.Scoped)]
|
|
public class Kmss_Repositories : Repository<Kmss>, IKmss_Repositories
|
|
{
|
|
}
|
|
}
|