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