Reputation: 61
for example I want to create two types of users 1. Teacher 2. Student
Teacher having properties of Fname, Lname and Salary made from a MemberType "CollegeMember"
I want to create student user with the properties Fname and Lname only. So is it possible to create new Member type with using properties of old member type or has any other solution?
Thanks.
Upvotes: 0
Views: 342
Reputation: 10400
Member objects do not quite work like that in Umbraco. You can not inherited member objects in the same way that you can inherit document types or media types.
I would simply create two independent user types here with the properties you require. If you desperately want the inheritance, you could implement your own membership provider or extension to the API, but even then the inheritance would not be visible in Umbraco, only at the code level. In Umbraco the member types would still appear as independent objects. So it seems like little gain.
Upvotes: 2