Exemplo n.º 1
0
 public LaptopService(ILaptopRepository LaptopRepository)
 {
     this._laptopRepository = LaptopRepository;
 }
Exemplo n.º 2
0
 public UserController(ILaptopRepository repo, IMapper mapper)
 {
     _mapper = mapper;
     _repo   = repo;
 }