Ejemplo n.º 1
0
     public CustomFieldBuilder WithTranslation( Translation translation ) {
         if ( this.translations == null ) {
             this.translations = new List<Translation>();
         }
         this.translations.Add( translation );
         return this;
 
     }
     public ProfessionalIdentityField AddTranslation(Translation value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("Argument cannot be null");
     }
     
     _translations.Add(value);
     return this;
 }
Ejemplo n.º 3
0
     public CustomField AddTranslation(Translation value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("Argument cannot be null");
     }
     
     _translations.Add(value);
     return this;
 }