For all of the following modules, changed DefaultUserID and DefaultUsrID properties to use vlnSettings value rather than environment variable value. This is needed to support multiuser and security updates but does not affect the non-multiuser and security version of PROMS.

This commit is contained in:
Rich 2013-11-20 22:54:15 +00:00
parent 62c7377c35
commit 1f2c18bdf1

View File

@ -554,7 +554,7 @@ namespace VEPROMS.CSLA.Library
}
public virtual string DefaultUserID
{
get { return Environment.UserName.ToUpper(); }
get { return Volian.Base.Library.VlnSettings.UserID; }
}
// Authorization Rules
public virtual void AddAuthorizationRules(Csla.Security.AuthorizationRules rules)