| 123456789101112131415161718192021222324 |
- @*
- For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
- *@
- @using LotteryWebApp.Languages;
- @using LotteryWebApp.Controllers;
- @using LotteryWebApp.Common;
- @using LotteryWebApp.Service;
- @using System.Globalization;
- @model TermResultModel
- <div>
- @{
- // for (int i = 0; i < Model.listTerm.Count; i++)
- if (Model != null && Model.listTerm != null && Model.listTerm.Count > 0)
- {
- <div class="loto-container">
- @await Component.InvokeAsync("LotoNumber", new { data = Model.listTerm[0], type = Constants.GameId.Direct4D, })
- </div>
- }
- }
- </div>
|