public TakeCourseModel(CourseExploreService _exploreService, CoursePayService _coursePayService, CouseOrderService _couseOrderService, PayService _payService) { exploreService = _exploreService; coursePayService = _coursePayService; couseOrderService = _couseOrderService; payService = _payService; }
public CreateOrderModel(CourseExploreService _exploreService, CouseOrderService _courseOrderService, CoursePayService _coursePayService, ILogger <CreateOrderModel> _logger, PayService _payService) { logger = _logger; courseOrderService = _courseOrderService; coursePayService = _coursePayService; exploreService = _exploreService; payService = _payService; }
public IndexModel(ILogger <IndexModel> logger, CourseExploreService _courseExplore) { _logger = logger; courseExplore = _courseExplore; }
public CourseDetailModel(CourseExploreService _courseExploreService, CouseOrderService _couseOrderService) { courseExploreService = _courseExploreService; couseOrderService = _couseOrderService; }
public TrailerCourseModel(CourseExploreService _courseExploreService, CouseOrderService _couseOrderService) { courseExploreService = _courseExploreService; couseOrderService = _couseOrderService; }
public CourseListModel(CourseExploreService _exploreService) { exploreService = _exploreService; }