public ShortenersController(IURlShortenerService shortenerService, IMapper mapper) : base(mapper)
 {
     _shortenerService = shortenerService;
 }
Exemple #2
0
 public HomeController(IURlShortenerService shortenerService)
 {
     _shortenerService = shortenerService;
 }