コード例 #1
0
 public TripsController(ITripRepo itrprepo)
 {
     this.itrprepo = itrprepo;
 }
コード例 #2
0
 public EditModel(ITripRepo tripRepo, ITripService tripService)
 {
     this._tripRepo    = tripRepo;
     this._tripService = tripService;
 }
コード例 #3
0
ファイル: TripService.cs プロジェクト: htdnug/sports
 public TripService(SportsContext context, ITripRepo tripRepo)
 {
     this._context  = context;
     this._tripRepo = tripRepo;
 }
コード例 #4
0
 public IndexModel(ITripRepo tripRepo)
 {
     this._tripRepo = tripRepo;
 }
コード例 #5
0
 public DeleteModel(ITripRepo tripRepo, ITripService tripService)
 {
     this._tripRepo    = tripRepo;
     this._tripService = tripService;
 }