Esempio n. 1
0
        protected void plansList_ItemDataBound(object sender, RepeaterItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            {
                PagePlanDisplay planDisplay = e.Item.DataItem as PagePlanDisplay;

                UserControl control1 = e.Item.FindControl("PlanDisplay1") as UserControl;
                ManipulatePlanDisplay(planDisplay.plan1, e, planDisplay, control1, planDisplay.optionalReports);

                UserControl control2 = e.Item.FindControl("PlanDisplay2") as UserControl;
                ManipulatePlanDisplay(planDisplay.plan2, e, planDisplay, control2, planDisplay.optionalReports);

                UserControl control3 = e.Item.FindControl("PlanDisplay3") as UserControl;
                ManipulatePlanDisplay(planDisplay.plan3, e, planDisplay, control3, planDisplay.optionalReports);
            }
        }
Esempio n. 2
0
        List <PagePlanDisplay> DisplayPlans()
        {
            List <PagePlanDisplay> plans = new List <PagePlanDisplay>();

            if (SessionWrapper.OrderDetail != null && SessionWrapper.OrderDetail.ProfessionId != 0)
            {
                int professionID = SessionWrapper.OrderDetail.ProfessionId;

                ISpecification <ProfessionPlan> planSpe         = new Specification <ProfessionPlan>(p => p.ProfessionId == professionID);
                IRepository <ProfessionPlan>    planRep         = new Repository <ProfessionPlan>();
                IList <ProfessionPlan>          professionPlans = planRep.SelectAll(planSpe);

                int row = 0;
                int col = 0;

                PagePlanDisplay currentPlan = new PagePlanDisplay();
                foreach (ProfessionPlan professionPlan in professionPlans)
                {
                    planRep.LoadRelatedProperties(professionPlan, new string[] { "Plan" });

                    switch (col % 3)
                    {
                    case 0:
                        currentPlan.plan1 = professionPlan.Plan;
                        break;

                    case 1:
                        currentPlan.plan2 = professionPlan.Plan;
                        break;

                    case 2:
                        currentPlan.plan3 = professionPlan.Plan;
                        break;
                    }
                    col++;

                    if (col > 2 || ((row * 3) + col) == professionPlans.Count)
                    {
                        plans.Add(currentPlan);
                        currentPlan = new PagePlanDisplay();
                    }


                    if (col > 2)
                    {
                        row++;
                        col = 0;
                    }
                }
            }

            //get optional reports for profession
            List <PageReportData> reports = new List <PageReportData>();

            if (SessionWrapper.OrderDetail != null && SessionWrapper.OrderDetail.ProfessionId != 0)
            {
                int professionID = SessionWrapper.OrderDetail.ProfessionId;

                ISpecification <ProfessionReport> proRepSpec        = new Specification <ProfessionReport>(p => p.ProfessionId == professionID);
                IRepository <ProfessionReport>    proRep            = new Repository <ProfessionReport>();
                IList <ProfessionReport>          professionReports = proRep.SelectAll(proRepSpec);
                foreach (ProfessionReport professionReport in professionReports)
                {
                    proRep.LoadRelatedProperties(professionReport, new string[] { "Report" });
                    reports.Add(new PageReportData(professionReport.Report.Name, professionReport.Report.Description, professionReport.Report.ReportId, professionReport.Report.Price));
                }
                foreach (PagePlanDisplay pagePlanDisplay in plans)
                {
                    pagePlanDisplay.optionalReports = reports;
                }
            }

            return(plans);
        }
Esempio n. 3
0
 private static void ManipulatePlanDisplay(Plan plan, RepeaterItemEventArgs e, PagePlanDisplay planDisplay, UserControl control, List <PageReportData> optionalReports)
 {
     if (plan != null)
     {
         eknowID.Controls.PlanDisplay uPlanCon = control as eknowID.Controls.PlanDisplay;
         if (uPlanCon != null)
         {
             uPlanCon.plan = plan;
         }
     }
     else
     {
         eknowID.Controls.PlanDisplay uPlanCon = control as eknowID.Controls.PlanDisplay;
         if (uPlanCon != null)
         {
             uPlanCon.Visible = false;
         }
     }
 }