Beispiel #1
0
        public void UpdateGenotypeNote(int genotypeId, string note)
        {
            var genotype = u_repo.GetGenotype(genotypeId);

            if (genotype == null)
            {
                throw new AccessionException("Invalid Genotype when saving");
            }

            genotype.Note = note;
            u_repo.DoSaveGenotype(genotype);
        }