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; }
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; }