12 lines
360 B
C#
12 lines
360 B
C#
using NPP.SmartSchedue.Api.Core.Consts;
|
|
using ZhonTai.Admin.Core.Db.Transaction;
|
|
using ZhonTai.Admin.Core.Repositories;
|
|
|
|
namespace NPP.SmartSchedue.Api.Core.Repositories;
|
|
|
|
public class AppRepositoryBase<TEntity> : RepositoryBase<TEntity> where TEntity : class
|
|
{
|
|
public AppRepositoryBase(UnitOfWorkManagerCloud uowm) : base(DbKeys.AppDb, uowm)
|
|
{
|
|
}
|
|
} |