Exemplo n.º 1
0
        public static ChromatogramLibrary LoadFromDatabase(ChromatogramLibrarySpec chromatogramLibrarySpec, ILoadMonitor loadMonitor)
        {
            var library = new ChromatogramLibrary(chromatogramLibrarySpec, loadMonitor.StreamManager);

            if (library.Load(loadMonitor))
            {
                return(library);
            }
            return(null);
        }
Exemplo n.º 2
0
 public override Library LoadLibrary(ILoadMonitor loader)
 {
     return(ChromatogramLibrary.LoadFromDatabase(this, loader));
 }
Exemplo n.º 3
0
 public Serializer(ChromatogramLibrary library, Stream stream)
 {
     _library = library;
     _stream  = stream;
 }
Exemplo n.º 4
0
 protected bool Equals(ChromatogramLibrary other)
 {
     return(base.Equals(other) && string.Equals(FilePath, other.FilePath) && string.Equals(PanoramaServer, other.PanoramaServer) && LibraryRevision == other.LibraryRevision);
 }