示例#1
0
 public ResourceController(IResourceInteractor interactor)
 {
     this._interactor = interactor;
 }
示例#2
0
 public HomeController(IProjectInteractor projectInteractor, IResourceInteractor resourceInteractor)
 {
     this._projectInteractor  = projectInteractor;
     this._resourceInteractor = resourceInteractor;
 }