Пример #1
0
        public IQuantitationChannel Add(IQuantitationChannel channel)
        {
            _channels.Add(channel.ReporterMass, channel);
            MonoisotopicMass += channel.MonoisotopicMass;

            return(channel);
        }
Пример #2
0
 public bool Remove(IQuantitationChannel channel)
 {
     if (_channels.Remove(channel.MonoisotopicMass))
     {
         MonoisotopicMass -= channel.MonoisotopicMass;
         return(true);
     }
     return(false);
 }
Пример #3
0
 public bool Remove(IQuantitationChannel channel)
 {
     if (_channels.Remove(channel.MonoisotopicMass))
     {
         MonoisotopicMass -= channel.MonoisotopicMass;
         return true;
     }
     return false;
 }
Пример #4
0
        public IQuantitationChannel Add(IQuantitationChannel channel)
        {
            _channels.Add(channel.ReporterMass, channel);
            MonoisotopicMass += channel.MonoisotopicMass;

            return channel;
        }