2016-09-23 9 views

答えて

0

依存性注入(DI)を使用し、コントローラのコンストラクタにリポジトリを注入する必要があります。ここでは例がある:

public class Controller 
{ 
    public readonly Repository repository; 

    public Controller(Repository repository) 
    { 
     this.repository = repository; 
    } 

    public void SomeMethod() 
    { 
     this.repository.AMethodInTheRepository(); 
    } 
} 

はそれが役に立てば幸い:)

+0

ありがとう返信用。 –

関連する問題