public ActionResult DeleteConfirmed(int id)
        {
            Genotype genotype = m_repo.GetGenotype(id);

            m_repo.DeleteGenotype(genotype);
            return(RedirectToAction("Index"));
        }