コード例 #1
0
 public PasteSharpClient(string apiKey)
 {
     _apiKey       = apiKey;
     _pasteService = new PasteService();
 }
コード例 #2
0
 public PastesController(PasteService pasteService, IMapper mapper)
 {
     this.pasteService = pasteService;
     this.mapper       = mapper;
 }