Example #1
0
        public ReleaseProfile Update(ReleaseProfile restriction)
        {
            restriction.Preferred.Sort(_preferredComparer);

            return(_repo.Update(restriction));
        }
Example #2
0
        public ReleaseProfile Add(ReleaseProfile restriction)
        {
            restriction.Preferred.Sort(_preferredComparer);

            return(_repo.Insert(restriction));
        }