コード例 #1
0
        public List <ReleaseProfile> All()
        {
            var all = _repo.All().ToList();

            all.ForEach(r => r.Preferred.Sort(_preferredComparer));

            return(all);
        }
コード例 #2
0
 public List <Restriction> All()
 {
     return(_repo.All().ToList());
 }