Profiles.Activity.Utilities.DataIO.GetProfilesCount C# (CSharp) 메소드

GetProfilesCount() 공개 메소드

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

Usage Example

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