public void AgregarCliente(String StrPrimerNombre, String StrSegundoNombre, String StrPrimerApellido, String StrSegundoApellido,
                            String StrContraseña, String StrConfContraseña, String StrDireccion, String StrPartyID, Boolean BoolHabilitado)
 {
     if (dc.BusquedaClienteID(StrPartyID).Any())
     {
         throw new ExcepcionExisteID();
     }
     else if (!StrContraseña.Equals(StrConfContraseña))
     {
         throw new ExcepcionNoCoincide();
     }
     else
     {
         dc.AgregarCliente(StrPrimerNombre, StrSegundoNombre, StrPrimerApellido, StrSegundoApellido, StrContraseña,
                           StrDireccion, StrPartyID, BoolHabilitado);
     }
 }