Example #1
0
        public async Task PassAsync(Int32 appId)
        {
            Check.IfNullOrZero(appId);
            var app = await _appContext.PassAsync(appId);

            await _commonNotify.SendNotify(app.UserId, new Notify("应用审核提醒", $@"您提交的应用 {app.Name} 已审核通过", 0, app.UserId));
        }