Profiles.Activity.Utilities.DataIO.GetProfilesCount C# (CSharp) Method

GetProfilesCount() public method

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

Usage Example

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