예제 #1
0
 private void btnAddValueName_Click(object sender, EventArgs e)
 {
     CRUDUIService
     .Add <AddEditEventLookupValueValueFieldView, EventLookupValueNameModel, EventLookupValueName>
         (model => CRUDUIService.Save(lbValueNames, model));
 }
예제 #2
0
 private void btnAddCondition_Click(object sender, EventArgs e)
 {
     CRUDUIService
     .Add <AddEditEventLookupValueConditionView, EventLookupValueConditionModel, EventLookupValueCondition>
         (model => CRUDUIService.Save(lbConditions, model));
 }
예제 #3
0
 private void btnAddCriteria_Click(object sender, EventArgs e)
 {
     CRUDUIService
     .Add <AddEditEventLookupValueCriteriaView, EventLookupValueCriteriaModel, EventLookupValueCriteria>
         (model => CRUDUIService.Save(lbCriteria, model));
 }
 private void btnAddLookupValue_Click(object sender, EventArgs e)
 {
     CRUDUIService.Add <AddEditEventLookupValueView, EventLookupValueModel, EventLookupValue>((model => CRUDUIService.Save(lbLookupValues, model)));
 }