Exemplo n.º 1
0
        public Genre AddGenre(Genre newgnr)
        {
            Genre gnr = new Genre();

            ChkContext();
            using (context)
            {
                gnr = DALServices.AddGenre(context, newgnr);
            }
            ClearContext();
            return(gnr);
        }