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

16 lines
329 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();
2015-11-13 21:33:53 +08:00
IEnumerable<Org> LoadByUser(int userId);
2015-10-26 21:58:12 +08:00
}
}