source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/business/SaveLogEntryDelegate.as@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 513 bytes
Line 
1/* SaveLogEntryDelegate.as */
2
3package gov.va.med.edp.business
4{
5 import gov.va.med.edp.vo.LogEntryVO;
6
7 import mx.rpc.IResponder;
8
9 public class SaveLogEntryDelegate extends ResponderChainingDelegate
10 {
11
12 public function SaveLogEntryDelegate(responder:IResponder)
13 {
14 super(responder, "saveLogEntry" );
15 }
16
17 public function saveLogEntry(logEntry:LogEntryVO):void
18 {
19 var params:Object = new Object();
20 params.logEntry = logEntry.toString();
21 send(params);
22 }
23 }
24}
Note: See TracBrowser for help on using the repository browser.