Ejemplo n.º 1
0
        public void RejectReferralSource(long referralSourceId)
        {
            var entity = ReferralSources.Find(referralSourceId);

            entity.IsApproved = false;
            entity.Deleted    = true;
        }
Ejemplo n.º 2
0
        public void ApproveReferralSource(long referralSourceId)
        {
            var entity = ReferralSources.Find(referralSourceId);

            entity.IsApproved = true;
        }