Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7778371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:22:50+00:00 2026-06-01T18:22:50+00:00

I have been using http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application as guidance to help me create a repository.I have

  • 0

I have been using
http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application
as guidance to help me create a repository.I have created a class with the code below.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using TheatreGroup.Models;

namespace TheatreGroup.DAL
{
    public interface IShowRepository : IDisposable
    {
        IEnumerable<Show> GetShows();
        Show GetShowByID(int showId);
        void InsertShow(Show name);
        void DeleteShow(int showID);
        void UpdateShow(Show name);
        void Save();
    }
}

But when i come to create the second class i get an error saying:

TheatreGroup.DAL.ShowRepository’ does not implement interface member ‘TheatreGroup.DAL.IShowRepository.InsertShow(TheatreGroup.Models.Show)’.

The error is on the 5line down (round about)

using System.Data;
using TheatreGroup.Models;

namespace TheatreGroup.DAL
{
    public class ShowRepository: IShowRepository, IDisposable
    {
        private TheatreContext context;

        public ShowRepository(TheatreContext context)
        {
            this.context = context;
        }

        public IEnumerable<Show> GetShows()
        {
            return context.Shows.ToList();
        }

        public Show GetShowByID(int id)
        {
            return context.Shows.Find(id);
        }

        public void InsertShows(Show name)
        {
            context.Shows.Add(name);
        }

        public void DeleteShow(int showID)
        {
            Show shows = context.Shows.Find(showID);
            context.Shows.Remove(shows);
        }

        public void UpdateShow(Show name)
        {
            context.Entry(name).State = EntityState.Modified;
        }

        public void Save()
        {
            context.SaveChanges();
        }

        private bool disposed = false;

        protected virtual void Dispose(bool disposing)
        {
            if (!this.disposed)
            {
                if (disposing)
                {
                    context.Dispose();
                }
            }
            this.disposed = true;
        }

        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T18:22:52+00:00Added an answer on June 1, 2026 at 6:22 pm

    You have InsertShows not InsertShow. Your interface needs InsertShow.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been reading some async articles here: http://www.asp.net/web-forms/tutorials/aspnet-45/using-asynchronous-methods-in-aspnet-45 and the author says : When
i have been building websites using vs 2008 (mostly asp.net mvc, jquery and webforms).
Newbie question. I’m writing an ASP.Net MVC app in VB.Net and have been using
I have been using extplorer http://extplorer.sourceforge.net/ Are there any good alternatives which run on
I have been trying to create an XML using the simplexml library (v2.6.2) http://simple.sourceforge.net/home.php
I have been using the ASP.NET chart controls for a while on win2k3 (32bit)
I have been trying to compile the project from http://www.shabdar.org/google-maps-user-control-for-ASP-Net-part1.html but it is complaining
I have been using web parts on my site since ASP.NET 2.0 came out.
I have been learning how to create dynamic images and dynamic stylesheets using ASP.NET
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.