Currently we support one single account per customer. This means that we have a Profile associated with the membership UserID that contains all the company data.
We now need to allow multiple account for single customer. The scenario is the following: the company owner purchases the service: he/she registers using ASP.NET MVC membership and a customer record associated to the UserID is created, then it manually sends invitation to some of his/her employees to register and get access to the company account.
How would you implement this is ASP.NET MVC 4?
Thanks.