User management fixed. Reports working now. Deployed

This commit is contained in:
unknown
2011-02-09 17:33:22 +05:30
parent 1400f42989
commit d4cfa92848
51 changed files with 1990 additions and 1358 deletions

View File

@ -11,10 +11,10 @@ namespace Tanshu.Accounts.Entities.Auth
public virtual string Name { get; set; }
public virtual string Password { get; set; }
public virtual bool LockedOut { get; set; }
public virtual IList<Group> Groups { get; set; }
public virtual IList<UserGroup> UserGroups { get; set; }
public User()
{
Groups = new List<Group>();
UserGroups = new List<UserGroup>();
}
}
}