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 AccountController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, IFormsAuthenticationWrapper Authentication)
 {
     this.database = database;
     this.twitter = twitter;
     this.authentication = Authentication;
 }
        Dictionary <string, IOAuthSignInClient> clients;// = new Dictionary<string, IOAuthSignInClient>();

        public AccountController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, IFormsAuthenticationWrapper Authentication)
        {
            this.database       = database;
            this.twitter        = twitter;
            this.authentication = Authentication;
        }
Exemple #5
0
 public TwitterOAuthClient(ITweetHarborTwitterService service, ITweetHarborDbContext database)
 {
     this.twitterService = service;
     this.database       = database;
 }
 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;
 }
 public TwitterOAuthClient(ITweetHarborTwitterService service, ITweetHarborDbContext database)
 {
     this.twitterService = service;
     this.database = database;
 }