SuZhouZhanFang/suzhou-iot-service/Gather.IBLL/IBaseService.cs

9 lines
147 B
C#

using Gather.IDAL;
namespace Gather.IBLL
{
public interface IBaseService<T, TKey> : IBaseRepository<T, TKey> where T : class
{
}
}