コード例 #1
0
ファイル: WeChatController.cs プロジェクト: wolfweb/Ww
 public ActionResult IndexPost(WechatViewModel model) {
     _wechatService.AddOrUpdate(model);
     return RedirectToAction("Index");
 }
コード例 #2
0
ファイル: WechatCustomApi.cs プロジェクト: wolfweb/Ww
 public WechatCustomApi(ICacheProvider cacheProvider, IWechatService wechatService) {
     _cacheProvider = cacheProvider;
     _wechatModel = wechatService.Get();
 }