mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 08:38:31 +08:00
19 lines
399 B
C#
19 lines
399 B
C#
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();
|
|
}
|
|
}
|
|
}
|