OpenAuth.Net/OpenAuth.Domain/Interface/IOrgRepository.cs

14 lines
277 B
C#
Raw Normal View History

2015-10-26 21:58:12 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Domain.Interface
{
public interface IOrgRepository :IRepository<Org>
2015-10-26 21:58:12 +08:00
{
IEnumerable<Org> LoadOrgs();
}
}