コード例 #1
0
 public MakesController(IMakesRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
コード例 #2
0
ファイル: MakeController.cs プロジェクト: jinhaiizzz/VehicleM
 public MakeController(IMakesRepository makesRepository)
 {
     _makesRepository = makesRepository;
 }
コード例 #3
0
ファイル: MakesController.cs プロジェクト: Misha3739/Vega
 public MakesController(IMakesRepository repository, IMapper mapper, IUnitOfWork unitOfWork)
 {
     this._mapper     = mapper;
     this._unitOfWork = unitOfWork;
     this._repository = repository;
 }