コード例 #1
0
 public ClientTeamHanlder(
     IListClientApi listClientApi,
     IPermissionClientApi permissionClientApi,
     ISiteCreation siteCreation,
     IFileClientApi fileClientApi)
 {
     this.listClientApi       = listClientApi;
     this.permissionClientApi = permissionClientApi;
     this.siteCreation        = siteCreation;
     this.fileClientApi       = fileClientApi;
 }
コード例 #2
0
 public ClientController(ISiteCreation siteCreation, IClientTeamHanlder clientTeamHanlder)
 {
     this.siteCreation      = siteCreation;
     this.clientTeamHanlder = clientTeamHanlder;
 }
コード例 #3
0
 public SiteCollectionController(ISiteCreation siteCreation)
 {
     this.siteCreation = siteCreation;
 }