/// <summary>
 /// Executes a procedure that load the imported records into the respective tables
 /// </summary>
 public void UpdateFromIntegration()
 {
     using (var db = new CustomerServiceModelContainer())
     {
         db.CS_SP_UpdateCustomer();
     }
 }