Exemple #1
0
        public PlanAward CompletePlan(PlanComplete plan)
        {
            var award = GetByUser(plan.User);

            award.CompletePlan(plan);

            return(InsertOrUpdate(award));
        }
 /// <summary>Called when the engine has completed planning the installation.</summary>
 /// <param name="args">The arguments of the event.</param>
 public void OnPlanComplete(WPFBootstrapperEventArgs <Wix.PlanCompleteEventArgs> args)
 {
     PlanComplete?.Invoke(this, args);
 }