/// <summary> /// Initializes a new instance of the <see cref="ClientDashboardController"/> class /// </summary> /// <param name="manageClient">manage Client</param> public ClientDashboardController(ManageClient manageClient) { this._manageClient = manageClient; }
/// <summary> /// Initializes a new instance of the <see cref="ClientDashboardController"/> class. /// </summary> public ClientDashboardController() { this._manageClient = new ManageClient(); }
/// <summary> /// Initializes a new instance of the <see cref="ClientListingController"/> class /// </summary> /// <param name="manageClient">manage Client</param> public ClientListingController(ManageClient manageClient) { this._manageClient = manageClient; }
/// <summary> /// Initializes a new instance of the <see cref="ClientListingController"/> class. /// </summary> public ClientListingController() { this._manageClient = new ManageClient(); }
/// <summary> /// Initializes a new instance of the <see cref="HomeController"/> class /// </summary> /// <param name="manageClient">manage Client</param> public HomeController(ManageClient manageClient) { this._manageClient = manageClient; }
/// <summary> /// Initializes a new instance of the <see cref="HomeController"/> class. /// </summary> public HomeController() { this._manageClient = new ManageClient(); }