Beispiel #1
0
 protected BaseManager()
 {
     _unitofWork = this.ResolveDataFactory <IAppLinkRepository>();
 }
 public AppLinksController(IAppLinkRepository appLinksRepository)
 {
     this.appLinksRepository = appLinksRepository;
 }
Beispiel #3
0
 public AppLinksManagementController(IAppLinkRepository appLinkRepository)
 {
     this.appLinkRepository = appLinkRepository;
 }