I'm using MvcContrib's portable area (see here) approach for making an application reusable. I need to be able to inject an Enum of roles from the parent app into the portable area. I use an Enum containing roles so I do not have to hard code roles into my app. I'm using ASP.Net MVC 3 and am using StructureMap to inject things into my portable area.
So, each parent app may have different roles. What's the best way to inject the parent app's roles into a portable area?
Here's an example of the enum I use for roles:
[Flags]
public enum SecurityRoles
{
None = 0,
GlobalAdministrator = 1,
Guest = 2
}
public sealed class SecurityRole
{
private readonly int value;
private readonly String name;
public static readonly SecurityRole GlobalAdministrator = new SecurityRole(1, @"GlobalAdministrator");
public static readonly SecurityRole Guest = new SecurityRole(2, @"Guest");
private SecurityRole(int value, String name)
{
this.value = value;
this.name = name;
}
public override String ToString()
{
return name;
}
public int Id
{
get { return value; }
}
}
Thanks for your help.
Tom