Пример #1
0
 public GetBoardByIdHostedService(
     GetBoardByIdOptions options,
     IGetEntityRequestHandler <GetBoardModel, BoardInclusionConfiguration> getRequestAggreg
     )
 {
     _options          = options;
     _getRequestAggreg = getRequestAggreg;
 }
Пример #2
0
 public GetPublicUserByIdHostedService(
     GetPublicUserByIdOptions options,
     IGetEntityRequestHandler <GetPublicUserModel, PublicUserInclusionConfiguration> requestHandler
     )
 {
     _options        = options;
     _requestHandler = requestHandler;
 }
 public GetCommentByIdHostedService(
     GetCommentByIdOptions options,
     IGetEntityRequestHandler <GetCommentModel, CommentInclusionConfiguration> getRequestAggreg
     )
 {
     _options        = options;
     _requestHandler = getRequestAggreg;
 }