예제 #1
0
 public CougarCostsController()
 {
     this.Mgr   = DbMgr.Instance;
     this.Plans = Mgr.GetPlans();
 }
예제 #2
0
 /// <summary>
 /// Get all the Plan options available by displaying their Type
 /// </summary>
 /// <returns></returns>
 public IEnumerable <string> PlanOptions()
 {
     return(Mgr.GetPlans().Select((plan) => plan.Type));
 }