예제 #1
0
 public LaptopService(ILaptopRepository LaptopRepository)
 {
     this._laptopRepository = LaptopRepository;
 }
예제 #2
0
 public UserController(ILaptopRepository repo, IMapper mapper)
 {
     _mapper = mapper;
     _repo   = repo;
 }