コード例 #1
0
ファイル: Program.cs プロジェクト: pawelgorszczak/lerning
 public FluentEmployee()
 {
     _fluent = new FluentEmployee();
 }
コード例 #2
0
ファイル: FluentEmployee.cs プロジェクト: Premsjce/CSharpAll
 /// <summary>
 /// Initializes the Employee and FluentEmployee instance.
 /// </summary>
 /// <returns></returns>
 public static IFluentEmployee Init()
 {
     employee = new Employee();
     fluent   = new FluentEmployee();
     return(fluent);
 }