Exemplo n.º 1
0
 public override int DeleteInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
 {
     using (DbConnection connection = CreateConnection()) {
         return(DerbyProfileHelper.Profile_DeleteInactiveProfiles(connection, ApplicationName, (int)authenticationOption, userInactiveSinceDate));
     }
 }
Exemplo n.º 2
0
 private int DeleteProfilesInternal(string[] usernames)
 {
     using (DbConnection connection = CreateConnection()) {
         return(DerbyProfileHelper.Profile_DeleteProfiles(connection, ApplicationName, usernames));
     }
 }