Пример #1
0
 public IEnumerable Handle(EditDropDown c)
 {
     yield return(new DropDownEdited {
         Id = c.Id, Key = c.Key, IsSystem = c.IsSystem, Text = c.Text, Value = c.Value
     });
 }
Пример #2
0
 public IHttpActionResult Edit(EditDropDown ddl)
 {
     _messageDispatcher.SendCommand(ddl);
     return(Ok());
 }