简体   繁体   中英

C# Interface for multiple classes

I have a data provider project to access the database. this is composed by various classes (PersonDataProvider, JobDataProvider ...) I want to create an Interface. Do I have to create an Interface for each class? I was tempted to create one interface and than inherit on all the classes. This involves making all the projects classes partial and change the classes name.......But i think is not the best solution. Any suggestion?

You don't inherit an Interface you implement it. There's no need to make a class partial to add an interface to it.

An interface is a contract that the class subscribes to saying that it will honour the methods described in the interface and will implement them appropriately. For your scenario you'd create a single interface and implement it in your classes, you can then pass the instances of the various accessor classes as instances of the interface.

For example:

public interface IDataProvider
{
    void LoadData();
}

The data providers would then look as follows:

public class MyDataProvder1 : IDataProvider
{
    // Some methods

    // Must implement LoadData
    public void LoadData()
    {
        // Do something
    }
}

public class MyDataProvder2 : IDataProvider
{
    // Some methods

    // Must implement LoadData
    public void LoadData()
    {
        // Do something
    }
}

You can then pass the objects as IDataProvider as follows:

IDataProvider DataProviderA = new MyDataProvider1();
IDataProvider DataProviderB = new MyDataProvider2();

// Call function that expects an IDataProvider

DoSomething(DataProviderA);
DoSomething(DataProviderB);

...

public void DoSomething(IDataProvider DataProvider)
{
    DataProvider.LoadData();
}

Hopefully that clears it up for you.

I think you are approaching this incorrectly.

When you make an interface, you're making a contract for those classes. Think of it as "my class will act as a IMyInterface".

If all of your classes have a common usage scenario, then a single, common interface may be appropriate ( IDataProvider , given the class names..?).

Using interface depends how you want to arrange the classes. Interface allows some sort of plug and play behaviour. So, if you need a single interface, this will mean that you shall have a single set of interfaces accross all the classes implementing the interface. In such a case, your classes PersonDataProvider, JobDataProvider etc. will have the same set of methods. If you feel, they need to be different and still be available through a single provider facade, you can think of using a facade pattern.

The facade will have interfaces for individual provider and the provider classes will implement them.

First off, I'm assuming there are standard method calls across all your xDataProvider classes. For example, instead of a SelectPerson method, you have a Select method on the PersonDataProvider class. If not, you have some work to do to make this a valid exercise.

Within Visual Studio, there is an Extract Interface refactoring option. Right-click in a xDataProvider class and choose Refactor - Extract Interface . Now name it (IDataProvider, for example) and choose the methods / properties you want in your interface, click OK and your done with this class.

Then just implement this IDataProvider interface in your other xDataProvider classes. Assuming you've already implemented similar methods in all you DataProvider classes, you won't have to write any more code (beyond the : IDataProvider ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM