mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
采用全新的数据库架构
This commit is contained in:
18
OpenAuth.Repository/OrgRepository.cs
Normal file
18
OpenAuth.Repository/OrgRepository.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using OpenAuth.Domain;
|
||||
using OpenAuth.Domain.Interface;
|
||||
|
||||
namespace OpenAuth.Repository
|
||||
{
|
||||
public class OrgRepository : BaseRepository<Org>, IOrgRepository
|
||||
{
|
||||
public IEnumerable<Org> LoadOrgs()
|
||||
{
|
||||
return Find();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user