VCRootListCtruong.swift 401 Bytes
import UIKit
import Foundation

class VCRootListCtruong: VCContainerFullScreen {
    static func openController(_ viewController: UIViewController) {
        let vcOpen = VCRootListCtruong()
        viewController.present(vcOpen, animated: true, completion: nil)
    }

    override func viewDidLoad() {
        super.viewDidLoad()
        changeCurrentController(VCListCtruong.getInstance())
    }
}