コード例 #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;
 }
コード例 #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;
 }
コード例 #3
0
 public TweetHarborRolesProvider(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #4
0
 public TwitterOAuthClient(ITweetHarborTwitterService service, ITweetHarborDbContext database)
 {
     this.twitterService = service;
     this.database       = database;
 }
コード例 #5
0
 public UserAuthenticationAccountsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #6
0
 public AppHarborOAuthClient(string clientId, string secret, ITweetHarborDbContext database)
 {
     this.clientId = clientId;
     this.secret = secret;
     this.database = database;
 }
コード例 #7
0
 public AppHarborOAuthClient(string clientId, string secret, ITweetHarborDbContext database)
 {
     this.clientId = clientId;
     this.secret   = secret;
     this.database = database;
 }
コード例 #8
0
 public NotifyController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, ITweetHarborTextMessageService textMessageService)
 {
     this.database = database;
     this.twitter = twitter;
     this.textMessageService = textMessageService;
 }
コード例 #9
0
 public UserAuthenticationAccountsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #10
0
ファイル: HomeController.cs プロジェクト: bdacode/TweetHarbor
 public HomeController(ITweetHarborDbContext database)
 {
     db = database;
 }
コード例 #11
0
 public UsersController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #12
0
 public TwitterOAuthClient(ITweetHarborTwitterService service, ITweetHarborDbContext database)
 {
     this.twitterService = service;
     this.database = database;
 }
コード例 #13
0
 public UsersController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #14
0
 public TweetHarborRolesProvider(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #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;
        }
コード例 #16
0
 public ProjectsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #17
0
 public ProjectsController(ITweetHarborDbContext database)
 {
     this.database = database;
 }
コード例 #18
0
 public NotifyController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, ITweetHarborTextMessageService textMessageService)
 {
     this.database           = database;
     this.twitter            = twitter;
     this.textMessageService = textMessageService;
 }
コード例 #19
0
 public AccountController(ITweetHarborDbContext database, ITweetHarborTwitterService twitter, IFormsAuthenticationWrapper Authentication)
 {
     this.database = database;
     this.twitter = twitter;
     this.authentication = Authentication;
 }
コード例 #20
0
 public HomeController(ITweetHarborDbContext database)
 {
     db = database;
 }