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

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