コード例 #1
0
 public GlobalContext(IOrganizationService organizationService, ITracingService tracingService, EndpointTypeCode endpointType, Guid userId, Guid businessUnitId) : this(organizationService, tracingService, endpointType, userId)
 {
     this.businessUnitId = businessUnitId;
 }
コード例 #2
0
 public GlobalContext(IOrganizationService organizationService, ITracingService tracingService, EndpointTypeCode endpointType)
 {
     OrganizationService = organizationService;
     TracingService      = tracingService;
     EndpointType        = endpointType;
 }
コード例 #3
0
 public GlobalContext(IOrganizationService organizationService, ITracingService tracingService, EndpointTypeCode endpointType, Guid userId) : this(organizationService, tracingService, endpointType)
 {
     this.userId = userId;
 }
コード例 #4
0
 public GlobalContext(IOrganizationService organizationService, ITracingService tracingService, EndpointTypeCode endpointType, Guid userId, Guid initiatingUserId, Guid businessUnitId, int depth) : this(organizationService, tracingService, endpointType, userId)
 {
     this.initiatingUserId = initiatingUserId;
     this.businessUnitId   = businessUnitId;
     this.depth            = depth;
 }