实例化类但声明为接口

时间:2015-08-26 03:58:49

标签: c# asp.net-mvc-3

让我们说我有这个界面和存储库

界面:

interface ICustomerRepository
    {

实现接口的存储库

public class CustomerRepository:ICustomerRepository
    {      

在控制器中,我声明了一个接口实例

private ICustomerRepository repository = null;

有人可以解释这条线的概念吗?

this.repository = new CustomerRepository();

还在这里学习,需要投入。 任何人都可以帮助我吗?

0 个答案:

没有答案