Ejemplo n.º 1
0
 private void btnEditValueName_Click(object sender, EventArgs e)
 {
     CRUDUIService
     .Edit <AddEditEventLookupValueValueFieldView, EventLookupValueNameModel, EventLookupValueName>
         (lbCriteria, @"You must select a Field first", model => CRUDUIService.Save(lbValueNames, model));
 }
Ejemplo n.º 2
0
 private void btnEditCondition_Click(object sender, EventArgs e)
 {
     CRUDUIService
     .Edit <AddEditEventLookupValueConditionView, EventLookupValueConditionModel, EventLookupValueCondition>
         (lbCriteria, @"You must select a Condition first", model => CRUDUIService.Save(lbConditions, model));
 }
Ejemplo n.º 3
0
 private void btnEditCriteria_Click(object sender, EventArgs e)
 {
     CRUDUIService
     .Edit <AddEditEventLookupValueCriteriaView, EventLookupValueCriteriaModel, EventLookupValueCriteria>
         (lbCriteria, @"You must select a Criteria first", model => CRUDUIService.Save(lbCriteria, model));
 }
Ejemplo n.º 4
0
 private void btnEditLookupValue_Click(object sender, EventArgs e)
 {
     CRUDUIService.Edit <AddEditEventLookupValueView, EventLookupValueModel, EventLookupValue>(lbLookupValues, @"You must select a Lookup Value first", (model => CRUDUIService.Save(lbLookupValues, model)));
 }