예제 #1
0
 partial void OnFinancialDetailsChanging(FinancialDetails value);
예제 #2
0
 /// <summary>
 /// Create a new Employee object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="financialDetails">Initial value of the FinancialDetails property.</param>
 /// <param name="status">Initial value of the Status property.</param>
 public static Employee CreateEmployee(global::System.Int32 id, FinancialDetails financialDetails, global::System.String status)
 {
     Employee employee = new Employee();
     employee.Id = id;
     employee.FinancialDetails = StructuralObject.VerifyComplexObjectIsNotNull(financialDetails, "FinancialDetails");
     employee.Status = status;
     return employee;
 }