コード例 #1
0
ファイル: Client.cs プロジェクト: sudarsana-reddy/hello-world
 private void LoadProfile()
 {
     Profile = new Profile();
     Console.WriteLine("Profile Loaded");
 }
コード例 #2
0
ファイル: Client.cs プロジェクト: sudarsana-reddy/hello-world
 public void Enroll(ClientDetails clientDetails)
 {
     Profile = Profile.CreateProfile(clientDetails);
 }