public SPListService(ICredentialsManager credentials, IListDataService listDataService, IListItemService listItemService, IListItemDataService listItemDataService)
 {
     this.credentials         = credentials;
     this.listDataService     = listDataService;
     this.listItemDataService = listItemDataService;
     this.listItemService     = listItemService;
 }
Example #2
0
 internal Attachments(IListDataService listDataService, IListItemDataService listItemDataService, IAttachmentsService attachmentsService, ICacheService cacheService)
 {
     this.listDataService     = listDataService;
     this.listItemDataService = listItemDataService;
     this.attachmentsService  = attachmentsService;
     this.cacheService        = cacheService;
 }
 internal Documents(IListDataService listDataService, IListItemService listItemService, IFileService fileService, ICacheService cacheService)
 {
     this.listDataService = listDataService;
     this.listItemService = listItemService;
     this.fileService     = fileService;
     this.cacheService    = cacheService;
 }
 internal SharePointUrls(IListUrls listUrls, IListItemUrls listItemUrls, ILibraryUrls libraryUrls, IDocumentUrls documentUrls, IListDataService listDataService, IListItemDataService listItemDataService)
 {
     this.listUrls            = listUrls;
     this.listItemUrls        = listItemUrls;
     this.libraryUrls         = libraryUrls;
     this.documentUrls        = documentUrls;
     this.listDataService     = listDataService;
     this.listItemDataService = listItemDataService;
 }
Example #5
0
 internal Fields(IFieldsService fields, IListDataService lists, ICacheService cacheService)
 {
     this.fields       = fields;
     this.lists        = lists;
     this.cacheService = cacheService;
 }
 internal Folders(IFolderService folders, IListDataService listDataService, ICacheService cacheService)
 {
     this.cacheService    = cacheService;
     this.listDataService = listDataService;
     this.folders         = folders;
 }
Example #7
0
 internal UserProfiles(IUserProfileService userProfiles, IListDataService listDataService, ICacheService cacheService)
 {
     this.cacheService    = cacheService;
     this.listDataService = listDataService;
     this.userProfiles    = userProfiles;
 }
Example #8
0
 public ListController(IListDataService listService)
 {
     this.listService = listService;
 }