public LaptopService(ILaptopRepository LaptopRepository) { this._laptopRepository = LaptopRepository; }
public UserController(ILaptopRepository repo, IMapper mapper) { _mapper = mapper; _repo = repo; }