Beispiel #1
0
 public TripsController(ITripRepo itrprepo)
 {
     this.itrprepo = itrprepo;
 }
Beispiel #2
0
 public EditModel(ITripRepo tripRepo, ITripService tripService)
 {
     this._tripRepo    = tripRepo;
     this._tripService = tripService;
 }
Beispiel #3
0
 public TripService(SportsContext context, ITripRepo tripRepo)
 {
     this._context  = context;
     this._tripRepo = tripRepo;
 }
Beispiel #4
0
 public IndexModel(ITripRepo tripRepo)
 {
     this._tripRepo = tripRepo;
 }
Beispiel #5
0
 public DeleteModel(ITripRepo tripRepo, ITripService tripService)
 {
     this._tripRepo    = tripRepo;
     this._tripService = tripService;
 }