Пример #1
0
        public int CountByExpertGroupKey(int expertGroupKey)
        {
            var specification = new Specification.ExpertGroupUser.ByExpertGroupKey(expertGroupKey);

            var result = Count(specification);

            return(result);
        }
Пример #2
0
        public IEnumerable <POCO.ExpertGroupUser> FindByExpertGroupKey(int expertGroupKey)
        {
            var specification = new Specification.ExpertGroupUser.ByExpertGroupKey(expertGroupKey);

            var result = Find(specification);

            return(result);
        }