Exemplo n.º 1
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;
 }
Exemplo n.º 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 TweetHarborRolesProvider(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 4
0
 public TwitterOAuthClient(ITweetHarborTwitterService service, ITweetHarborDbContext database)
 {
     this.twitterService = service;
     this.database       = database;
 }
 public UserAuthenticationAccountsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
 public AppHarborOAuthClient(string clientId, string secret, ITweetHarborDbContext database)
 {
     this.clientId = clientId;
     this.secret = secret;
     this.database = database;
 }
Exemplo n.º 7
0
 public AppHarborOAuthClient(string clientId, string secret, ITweetHarborDbContext database)
 {
     this.clientId = clientId;
     this.secret   = secret;
     this.database = database;
 }
Exemplo n.º 8
0
 public NotifyController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, ITweetHarborTextMessageService textMessageService)
 {
     this.database = database;
     this.twitter = twitter;
     this.textMessageService = textMessageService;
 }
 public UserAuthenticationAccountsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 10
0
 public HomeController(ITweetHarborDbContext database)
 {
     db = database;
 }
Exemplo n.º 11
0
 public UsersController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 12
0
 public TwitterOAuthClient(ITweetHarborTwitterService service, ITweetHarborDbContext database)
 {
     this.twitterService = service;
     this.database = database;
 }
Exemplo n.º 13
0
 public UsersController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 14
0
 public TweetHarborRolesProvider(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 15
0
        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;
        }
Exemplo n.º 16
0
 public ProjectsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 17
0
 public ProjectsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
Exemplo n.º 18
0
 public NotifyController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, ITweetHarborTextMessageService textMessageService)
 {
     this.database           = database;
     this.twitter            = twitter;
     this.textMessageService = textMessageService;
 }
Exemplo n.º 19
0
 public AccountController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, IFormsAuthenticationWrapper Authentication)
 {
     this.database = database;
     this.twitter = twitter;
     this.authentication = Authentication;
 }
Exemplo n.º 20
0
 public HomeController(ITweetHarborDbContext database)
 {
     db = database;
 }