Example #1
0
 public Event(IFacebookIntegration fbIntegration, ICrateManager crateManager)
 {
     _crateManager  = crateManager;
     _fbIntegration = fbIntegration;
 }
Example #2
0
 public AuthenticationController(IFacebookIntegration fbIntegration, IHubLoggerService loggerService)
 {
     _loggerService = loggerService;
     _fbIntegration = fbIntegration;
 }
 public Post_To_Timeline_v1(ICrateManager crateManager, IFacebookIntegration fbIntegration)
     : base(crateManager)
 {
     _fbIntegration = fbIntegration;
 }
Example #4
0
 public Monitor_Feed_Posts_v1(ICrateManager crateManager, IFacebookIntegration fbIntegration)
     : base(crateManager)
 {
     _fbIntegration = fbIntegration;
 }