Is it possible to use 2 class to implement Modal popup in ASP.NET Core 3.1 MVC?
I mean, For example, I have list of Employee (Employee Class-EmployeeID, Name, Age, Post, Address, etc.) in datatable and with each row there is a button "Create selected user account".
Now when I click on any selected user row "Create selected user account", a Modal popup open with that employeeid and attributes from another class(Register User Class) to save that employee user account details.
(Register User Class-EmployeeID,Username,Password, etc...).
Is it possiable to do?