public void DataBind(BugzillaServiceEntity source)
        {
            AddControlBinding(txtCreateReassignValue, source, BugzillaServiceEntity.CreateReassignValueProperty);
            AddControlBinding(txtCloseReassignValue, source, BugzillaServiceEntity.CloseReassignValueProperty);

            AddHelpSupport(txtCreateReassignValue, source, BugzillaServiceEntity.CreateReassignValueProperty);
            AddHelpSupport(txtCloseReassignValue, source, BugzillaServiceEntity.CloseReassignValueProperty);
        }
Esempio n. 2
0
 public BugzillaConnectionValidator(BugzillaServiceEntity entity)
 {
     if (entity == null)
     {
         throw new ArgumentNullException();
     }
     this.entity = entity;
 }