8 lines
183 B
C#
8 lines
183 B
C#
using OAService.Service.Repository;
|
|
|
|
namespace StandManager.Service.Repository;
|
|
|
|
public interface IStandManagerGenericRepository<T> : IGenericRepository<T> where T : class
|
|
{
|
|
|
|
} |