public Genre UpdateGenre(Genre newgenre)
        {
            Genre g = new Genre();

            ChkContext();
            using (context)
            {
                g = DALServices.UpdateGenre(context, newgenre);
            }
            ClearContext();
            return(g);
        }