public IEnumerable Handle(EditDropDown c) { yield return(new DropDownEdited { Id = c.Id, Key = c.Key, IsSystem = c.IsSystem, Text = c.Text, Value = c.Value }); }
public IHttpActionResult Edit(EditDropDown ddl) { _messageDispatcher.SendCommand(ddl); return(Ok()); }