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