public IActionResult Index()
        {
            var model = packagePlanService.GetAllPackagePlans();

            return(View(model));
        }
Example #2
0
 public IActionResult SubscribeNow()
 {
     return(View(packagePlanService.GetAllPackagePlans()));
 }