コード例 #1
0
ファイル: Reference.cs プロジェクト: sudutgalau/kinect-ripple
 public string CreateEvent(System.Data.DataTable EventDT, System.Data.DataTable TimingDT, System.Data.DataTable CommunicationDT, out int EventID)
 {
     RippleFloorApp.RFIDCardService.CreateEventRequest inValue = new RippleFloorApp.RFIDCardService.CreateEventRequest();
     inValue.EventDT         = EventDT;
     inValue.TimingDT        = TimingDT;
     inValue.CommunicationDT = CommunicationDT;
     RippleFloorApp.RFIDCardService.CreateEventResponse retVal = ((RippleFloorApp.RFIDCardService.ISQLService)(this)).CreateEvent(inValue);
     EventID = retVal.EventID;
     return(retVal.CreateEventResult);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: sudutgalau/kinect-ripple
 public System.Threading.Tasks.Task <RippleFloorApp.RFIDCardService.CreateEventResponse> CreateEventAsync(RippleFloorApp.RFIDCardService.CreateEventRequest request)
 {
     return(base.Channel.CreateEventAsync(request));
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: sudutgalau/kinect-ripple
 RippleFloorApp.RFIDCardService.CreateEventResponse RippleFloorApp.RFIDCardService.ISQLService.CreateEvent(RippleFloorApp.RFIDCardService.CreateEventRequest request)
 {
     return(base.Channel.CreateEvent(request));
 }