예제 #1
0
        public void RejectReferralSource(long referralSourceId)
        {
            var entity = ReferralSources.Find(referralSourceId);

            entity.IsApproved = false;
            entity.Deleted    = true;
        }
예제 #2
0
        public void ApproveReferralSource(long referralSourceId)
        {
            var entity = ReferralSources.Find(referralSourceId);

            entity.IsApproved = true;
        }