public ProjectController(IUserRepository userRepository, IProjectRepository projectRepository, OrganizationRepository organizationRepository, BillingManager billingManager, NotificationSender notificationSender) {
     _userRepository = userRepository;
     _projectRepository = projectRepository;
     _organizationRepository = organizationRepository;
     _billingManager = billingManager;
     _notificationSender = notificationSender;
 }
 public AccountController(IMembershipProvider membership, IOrganizationRepository organizationRepository, IUserRepository userRepository, BillingManager billingManager, IMailer mailer, DataHelper dataHelper) {
     _membershipProvider = membership;
     _organizationRepository = organizationRepository;
     _userRepository = userRepository;
     _billingManager = billingManager;
     _mailer = mailer;
     _dataHelper = dataHelper;
 }
Example #3
0
 public DataHelper(IOrganizationRepository organizationRepository,
     IProjectRepository projectRepository,
     IUserRepository userRepository,
     IEventRepository eventRepository,
     IStackRepository stackRepository,
     ITokenRepository tokenRepository,
     BillingManager billingManager) {
     _organizationRepository = organizationRepository;
     _projectRepository = projectRepository;
     _userRepository = userRepository;
     _eventRepository = eventRepository;
     _stackRepository = stackRepository;
     _tokenRepository = tokenRepository;
     _billingManager = billingManager;
 }
 public DataHelper(OrganizationRepository organizationRepository,
     ProjectRepository projectRepository,
     UserRepository userRepository,
     ErrorRepository errorRepository,
     ErrorStackRepository errorStackRepository,
     DayStackStatsRepository dayStackStats,
     MonthStackStatsRepository monthStackStats,
     DayProjectStatsRepository dayProjectStats,
     MonthProjectStatsRepository monthProjectStats,
     ErrorStatsHelper errorStatsHelper,
     BillingManager billingManager) {
     _organizationRepository = organizationRepository;
     _projectRepository = projectRepository;
     _userRepository = userRepository;
     _errorRepository = errorRepository;
     _errorStackRepository = errorStackRepository;
     _dayStackStats = dayStackStats;
     _monthStackStats = monthStackStats;
     _dayProjectStats = dayProjectStats;
     _monthProjectStats = monthProjectStats;
     _statsHelper = errorStatsHelper;
     _billingManager = billingManager;
 }
 public DataHelper(IOrganizationRepository organizationRepository,
     IProjectRepository projectRepository,
     IUserRepository userRepository,
     IEventRepository eventRepository,
     IStackRepository stackRepository,
     ITokenRepository tokenRepository,
     IDayStackStatsRepository dayStackStats,
     IMonthStackStatsRepository monthStackStats,
     IDayProjectStatsRepository dayProjectStats,
     IMonthProjectStatsRepository monthProjectStats,
     BillingManager billingManager) {
     _organizationRepository = organizationRepository;
     _projectRepository = projectRepository;
     _userRepository = userRepository;
     _eventRepository = eventRepository;
     _stackRepository = stackRepository;
     _tokenRepository = tokenRepository;
     _dayStackStats = dayStackStats;
     _monthStackStats = monthStackStats;
     _dayProjectStats = dayProjectStats;
     _monthProjectStats = monthProjectStats;
     _billingManager = billingManager;
 }
 public AdminController(IOrganizationRepository repository, BillingManager billingManager, IMessagePublisher messagePublisher) {
     _repository = repository;
     _billingManager = billingManager;
     _messagePublisher = messagePublisher;
 }
 public AdminController(IOrganizationRepository repository, BillingManager billingManager, NotificationSender notificationSender) {
     _repository = repository;
     _billingManager = billingManager;
     _notificationSender = notificationSender;
 }
 public ProjectController(IUserRepository userRepository, IProjectRepository projectRepository, IOrganizationRepository organizationRepository, BillingManager billingManager) {
     _userRepository = userRepository;
     _projectRepository = projectRepository;
     _organizationRepository = organizationRepository;
     _billingManager = billingManager;
 }