Example #1
0
 public static ChannelData GetChannelDataFromLeftToRight(
     this PatientPhysioData _this,
     ChannelData channelData,
     long leftMarkerId,
     long rightMarkerId)
 {
     return(_this.GetChannelDataFromLeftToRight(channelData, leftMarkerId, 0, rightMarkerId, 0));
 }
Example #2
0
        public static ChannelData GetChannelDataFromLeftToRight(
            this PatientPhysioData _this,
            string channelName,
            long leftMarkerId,
            long rightMarkerId)
        {
            var channelData = _this.GetChannelData(channelName);

            return(_this.GetChannelDataFromLeftToRight(channelData, leftMarkerId, 0, rightMarkerId, 0));
        }