public TripNotificationServices(IDbRepository<TripNotification> tripNotificationRepos, ITripServices tripServices, INotificationTypeServices notificationTypeServices)
 {
     this.tripNotificationRepos = tripNotificationRepos;
     this.tripServices = tripServices;
     this.notificationTypeServices = notificationTypeServices;
 }
 public NotificationTypeAdminController(INotificationTypeServices notificationTypeServices)
 {
     this.notificationTypeServices = notificationTypeServices;
 }