public FluentEmployee() { _fluent = new FluentEmployee(); }
/// <summary> /// Initializes the Employee and FluentEmployee instance. /// </summary> /// <returns></returns> public static IFluentEmployee Init() { employee = new Employee(); fluent = new FluentEmployee(); return(fluent); }