コード例 #1
0
 public CustomProfileProvider(string currentLogin, DataAccess.IProfileDao profileDao)
 {
     _currentLogin = currentLogin;
     _profileDao   = profileDao;
 }
コード例 #2
0
 public CustomProfileProvider()
 {
     _currentLogin = System.Web.HttpContext.Current.User.Identity.Name;
     _profileDao   = new DataAccess.SQLSupport.ProfileDao();
 }