Exemplo n.º 1
0
        public virtual void MapToServerObject(Server.Application.BenefitPlan serverBenefitPlan)
        {
            base.MapToServerObject((Server.Application.CoreObject)serverBenefitPlan);


            return;
        }
Exemplo n.º 2
0
        public BenefitPlan Copy()
        {
            Server.Application.BenefitPlan serverBenefitPlan = (Server.Application.BenefitPlan)ToServerObject();

            BenefitPlan copiedBenefitPlan = new BenefitPlan(application, serverBenefitPlan);

            return(copiedBenefitPlan);
        }
Exemplo n.º 3
0
        public override Object ToServerObject()
        {
            Server.Application.BenefitPlan serverBenefitPlan = new Server.Application.BenefitPlan();

            MapToServerObject(serverBenefitPlan);

            return(serverBenefitPlan);
        }
Exemplo n.º 4
0
        public BenefitPlan(Application applicationReference, Server.Application.BenefitPlan serverObject)
        {
            BaseConstructor(applicationReference, serverObject);


            programId = serverObject.ProgramId;

            effectiveDate = serverObject.EffectiveDate;

            terminationDate = serverObject.TerminationDate;


            return;
        }
        private void BenefitPlanGetCompleted(Object sender, Server.Application.BenefitPlanGetCompletedEventArgs e)
        {
            GlobalProgressBarHide("BenefitPlan");

            if ((!e.Cancelled) && (e.Error == null) && (e.Result != null))
            {
                benefitPlan = e.Result;

                NotifyPropertyChanged("Name");

                NotifyPropertyChanged("BenefitPlan");
            }

            return;
        }