Exemplo n.º 1
0
        public AlbumCatalogDbEntities Init()
        {
            AlbumCatalogDbEntities contex;

            try
            {
                contex = _dbContext ?? (_dbContext = new AlbumCatalogDbEntities());
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }

            return(contex);
        }