public ThirdpartyRatesController(ISendMessage <Contracts.CreateQuote> sender,
                                  IQueryRA <ThirdPartyRate> query, ICommandRA <ThirdPartyRate> command)
 {
     this.sender  = sender;
     this.command = command;
     this.query   = query;
 }
Exemple #2
0
 public QuotesController(IQueryRA queryRa)
 {
     this.queryRa = queryRa;
 }
 public ThirdpartyRatesController(ISendMessage sender, IQueryRA query, ICommandRA command)
 {
     this.sender  = sender;
     this.command = command;
     this.query   = query;
 }
 public RateFeedsController(IQueryRA <RateFeed> query)
 {
     this.query = query;
 }
 public QuotesController(IQueryRA <Quote> query)
 {
     this.query = query;
 }
 public NotificationsController(IQueryRA query)
 {
     this.query = query;
 }