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