コード例 #1
0
        public Profile CreateProfile(ClientDetails clientDetails)
        {
            Profile profile = new Profile(clientDetails.TeleBanking, clientDetails.InternetService);

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