Пример #1
0
 public FluentEmployee()
 {
     _fluent = new FluentEmployee();
 }
Пример #2
0
 /// <summary>
 /// Initializes the Employee and FluentEmployee instance.
 /// </summary>
 /// <returns></returns>
 public static IFluentEmployee Init()
 {
     employee = new Employee();
     fluent   = new FluentEmployee();
     return(fluent);
 }