/// <summary>
 /// Executes the StoredProcedure to update Employee Emergency Contact information from Integration
 /// </summary>
 public void UpdateFromIntegration()
 {
     using (var db = new CustomerServiceModelContainer())
     {
         db.CS_SP_UpdateEmployeeEmergencyContact();
     }
 }