Profiles.Activity.Utilities.DataIO.GetProfilesCount C# (CSharp) Méthode

GetProfilesCount() public méthode

public GetProfilesCount ( ) : int
Résultat int
        public int GetProfilesCount()
        {
            return GetCount("select count(*) from [Profile.Data].[Person] where isactive = 1;");
        }

Usage Example

Exemple #1
0
 public void DrawProfilesModule()
 {
     publicationsCount.Text   = "" + data.GetPublicationsCount();
     totalProfilesCount.Text  = "" + data.GetProfilesCount();
     editedProfilesCount.Text = "" + data.GetEditedCount();
 }