Exemple #1
0
 public GroupsResource(
     IGenericJsonPagedQuery genericJsonPagedQuery,
     ICreateGroupCommand createGroupCommand)
 {
     this.genericJsonPagedQuery = genericJsonPagedQuery;
     this.createGroupCommand    = createGroupCommand;
 }
Exemple #2
0
 public TopicsResource( 
     IGenericJsonPagedQuery genericJsonPagedQuery,
     ICreateTopicCommand createGroupCommand)
 {
     this.genericJsonPagedQuery = genericJsonPagedQuery;
     this.createGroupCommand = createGroupCommand;
 }
 public SubscriptionsResource(
     ICreateSubscriptionCommand createCommand,
     ISubscriptionsByGroup subscriptionsByGroup,
     ISubscriptionsByTopic subscriptionsByTopic,
     IGenericJsonPagedQuery genericJsonPagedQuery)
 {
     this.createCommand = createCommand;
     this.subscriptionsByGroup = subscriptionsByGroup;
     this.subscriptionsByTopic = subscriptionsByTopic;
     this.genericJsonPagedQuery = genericJsonPagedQuery;
 }
Exemple #4
0
 public SubscriptionsResource(
     ICreateSubscriptionCommand createCommand,
     ISubscriptionsByGroup subscriptionsByGroup,
     ISubscriptionsByTopic subscriptionsByTopic,
     IGenericJsonPagedQuery genericJsonPagedQuery)
 {
     this.createCommand         = createCommand;
     this.subscriptionsByGroup  = subscriptionsByGroup;
     this.subscriptionsByTopic  = subscriptionsByTopic;
     this.genericJsonPagedQuery = genericJsonPagedQuery;
 }
Exemple #5
0
 public RetryService(IEntityById entityById,
                     ICreateRetryCommand createRetryCommand,
                     IDeleteRetryCommand deleteRetryCommand,
                     IUpdateRetryCommand updateRetryCommand,
                     IGenericJsonPagedQuery genericJsonPagedQuery)
 {
     this.entityById            = entityById;
     this.createRetryCommand    = createRetryCommand;
     this.deleteRetryCommand    = deleteRetryCommand;
     this.updateRetryCommand    = updateRetryCommand;
     this.genericJsonPagedQuery = genericJsonPagedQuery;
 }
Exemple #6
0
 public GroupController(
     IGenericJsonPagedQuery genericJsonPagedQuery,
     IEntityById entityById,
     ICreateGroupCommand createGroupCommand,
     IUpdateGroupCommand updateGroupCommand,
     IDeleteGroupCommand deleteGroupCommand
     )
 {
     this.genericJsonPagedQuery = genericJsonPagedQuery;
     this.entityById            = entityById;
     this.createGroupCommand    = createGroupCommand;
     this.updateGroupCommand    = updateGroupCommand;
     this.deleteGroupCommand    = deleteGroupCommand;
 }