Exemple #1
0
 public TipsAppService(ITipsService tipsService)
 {
     this.tipsService = tipsService ?? throw new ArgumentNullException(nameof(tipsService));
 }
 /// <summary>
 ///     初始化
 /// </summary>
 public TipsController()
 {
     _tipsService = new TipsService();
 }