Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ContractWithdrawnNotifierServiceBusFunction"/> class.
 /// </summary>
 /// <param name="contractStatusChangePublisher">An implementation of <see cref="IContractStatusChangePublisher"/>.</param>
 public ContractWithdrawnNotifierServiceBusFunction(IContractStatusChangePublisher contractStatusChangePublisher)
 {
     _contractStatusChangePublisher = contractStatusChangePublisher;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ContractReadyToReviewNotifierServiceBusFunction"/> class.
 /// </summary>
 /// <param name="contractStatusChangePublisher">An implementation of <see cref="IContractStatusChangePublisher"/>.</param>
 public ContractReadyToReviewNotifierServiceBusFunction(IContractStatusChangePublisher contractStatusChangePublisher)
 {
     _contractStatusChangePublisher = contractStatusChangePublisher;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ContractApprovedNotifierServiceBusFunction"/> class.
 /// </summary>
 /// <param name="contractStatusChangePublisher">An implementation of <see cref="IContractStatusChangePublisher"/>.</param>
 public ContractApprovedNotifierServiceBusFunction(IContractStatusChangePublisher contractStatusChangePublisher)
 {
     _contractStatusChangePublisher = contractStatusChangePublisher;
 }