public TripController(ITripServices tripServices, IRatingServices ratingServices, ITripNotificationServices tripNotificationServices, ITownProvider townProvider, IStatisticsServices statisticsServices, IViewServices viewServices, IDateProvider dateProvider, ITripProvider tripProvider, INotificationServices notificationServices)
 {
     this.TripServices = tripServices;
     this.RatingServices = ratingServices;
     this.TripNotificationServices = tripNotificationServices;
     this.StatisticsServices = statisticsServices;
     this.ViewServices = viewServices;
     this.TownProvider = townProvider;
     this.DateProvider = dateProvider;
     this.TripProvider = tripProvider;
     this.NotificationServices = notificationServices;
 }
 public TripNotificationAdminController(ITripNotificationServices tripNotificationServices)
 {
     this.tripNotificationServices = tripNotificationServices;
 }
 public RatingServices(IDbRepository<Rating> ratingRepos, ITripNotificationServices tipNotificationServices)
 {
     this.ratingRepos = ratingRepos;
     this.tipNotificationServices = tipNotificationServices;
 }
 public NotificationController(ITripNotificationServices tripNotificationServices, IUserServices userSerives, INotificationProvider notificationProvider)
 {
     this.tripNotificationServices = tripNotificationServices;
     this.userSerives = userSerives;
     this.notificationProvider = notificationProvider;
 }
 public TripAjaxController(ITripServices tripServices, ITripNotificationServices tripNotificaitonServices)
 {
     this.tripServices = tripServices;
     this.tripNotificaitonServices = tripNotificaitonServices;
 }
 public NotificationAjaxController(ITripNotificationServices tripNotificationServices)
 {
     this.tripNotificationServices = tripNotificationServices;
 }
 public LayoutController(IPageServices pageServices, ITripNotificationServices tripNotificationServices, ICacheServices CacheServices)
 {
     this.PageServices = pageServices;
     this.TripNotificationServices = tripNotificationServices;
     this.CacheServices = CacheServices;
 }