public ProjectsController(ITweetHarborDbContext database,
     ITweetHarborTwitterService twitterService,
     ITweetHarborTextMessageService textMessageService,
     AppHarbor.Client.IAppHarborClient appHarborClient)
 {
     this.database = database;
     this.twitterService = twitterService;
     this.textMessageService = textMessageService;
     this.appHarborClient = appHarborClient;
 }
Exemple #2
0
 public ProjectsController(ITweetHarborDbContext database,
                           ITweetHarborTwitterService twitterService,
                           ITweetHarborTextMessageService textMessageService,
                           AppHarbor.Client.IAppHarborClient appHarborClient)
 {
     this.database           = database;
     this.twitterService     = twitterService;
     this.textMessageService = textMessageService;
     this.appHarborClient    = appHarborClient;
 }
 public NotifyController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, ITweetHarborTextMessageService textMessageService)
 {
     this.database           = database;
     this.twitter            = twitter;
     this.textMessageService = textMessageService;
 }
 public NotifyController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, ITweetHarborTextMessageService textMessageService)
 {
     this.database = database;
     this.twitter = twitter;
     this.textMessageService = textMessageService;
 }