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 ProfileChildActionController(IStatisticsServices statisticsServices)
 {
     this.statisticsServices = statisticsServices;
 }
 public StatisticsController(IStatisticsServices statisticsServices, IUserServices userServices)
 {
     this.statisticsServices = statisticsServices;
     this.userServices = userServices;
 }
 public ProfileController(IUserServices userServices, ICarServices carServices, IStatisticsServices statisticsServices)
 {
     this.userServices = userServices;
     this.carServices = carServices;
     this.statisticsServices = statisticsServices;
 }
 public StatisticsChildActionController(IStatisticsServices statisticsServices)
 {
     this.StatisticsServices = statisticsServices;
 }