12 lines
237 B
C#
12 lines
237 B
C#
using _0_Framework.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Company.Domain.LawAgg
|
|
{
|
|
public interface ILawRepository : IRepository<long, Law>
|
|
{
|
|
Law GetWithItems(long id);
|
|
List<Law> GetActive();
|
|
}
|
|
}
|