)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Home » Code Library » MemoriseController (Ia.TentPlay.Wa.Controllers)

Public general use code classes and xml files that we've compiled and used over the years:

    1: using Microsoft.AspNetCore.Mvc;
    2: using System.Diagnostics;
    3: using System.Net;
    4: using System.Text.RegularExpressions;
    5:  
    6: namespace Ia.TentPlay.Wa.Controllers
    7: {
    8:     ////////////////////////////////////////////////////////////////////////////
    9:  
   10:     /// <summary publish="true">
   11:     ///
   12:     /// </summary>
   13:     /// 
   14:     /// <remarks> 
   15:     /// Copyright � 2006-2025 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   16:     ///
   17:     /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
   18:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   19:     ///
   20:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   21:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   22:     /// 
   23:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   24:     /// 
   25:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   26:     /// </remarks> 
   27:     public class MemoriseController : Controller
   28:     {
   29:         private readonly ILogger<MemoriseController> _logger;
   30:  
   31:         /////////////////////////////////////////////////////////////////////////////////
   32:  
   33:         /// <summary>
   34:         ///
   35:         /// </summary>
   36:         public MemoriseController(ILogger<MemoriseController> logger)
   37:         {
   38:             _logger = logger;
   39:         }
   40:  
   41:         /////////////////////////////////////////////////////////////////////////////////
   42:  
   43:         /// <summary>
   44:         ///
   45:         /// </summary>
   46:         public IActionResult Index() { return View(); }
   47:  
   48:         /////////////////////////////////////////////////////////////////////////////////
   49:  
   50:         /// <summary>
   51:         ///
   52:         /// </summary>
   53:         public IActionResult Arabic() { return View(); }
   54:  
   55:         /////////////////////////////////////////////////////////////////////////////////
   56:  
   57:         /// <summary>
   58:         ///
   59:         /// </summary>
   60:         public IActionResult German() { return View(); }
   61:  
   62:         /////////////////////////////////////////////////////////////////////////////////
   63:  
   64:         /// <summary>
   65:         ///
   66:         /// </summary>
   67:         public IActionResult Kana() { return View(); }
   68:  
   69:         /////////////////////////////////////////////////////////////////////////////////
   70:  
   71:         /// <summary>
   72:         ///
   73:         /// </summary>
   74:         public IActionResult Kanji() { return View(); }
   75:  
   76:         /////////////////////////////////////////////////////////////////////////////////
   77:  
   78:         /// <summary>
   79:         ///
   80:         /// </summary>
   81:         public IActionResult Math() { return View(); }
   82:  
   83:         /////////////////////////////////////////////////////////////////////////////////
   84:  
   85:         /// <summary>
   86:         ///
   87:         /// </summary>
   88:         [Route("/memorise/morse-code")]
   89:         public IActionResult MorseCode() { return View(); }
   90:  
   91:         /////////////////////////////////////////////////////////////////////////////////
   92:  
   93:         /// <summary>
   94:         ///
   95:         /// </summary>
   96:         public IActionResult Multiplication() { return View(); }
   97:  
   98:         /////////////////////////////////////////////////////////////////////////////////
   99:  
  100:         /// <summary>
  101:         ///
  102:         /// </summary>
  103:         [Route("/memorise/phonetic-alphabet")]
  104:         public IActionResult PhoneticAlphabet() { return View(); }
  105:  
  106:         /////////////////////////////////////////////////////////////////////////////////
  107:  
  108:         /// <summary>
  109:         ///
  110:         /// </summary>
  111:         public IActionResult Russian() { return View(); }
  112:  
  113:         /////////////////////////////////////////////////////////////////////////////////
  114:  
  115:         /// <summary>
  116:         ///
  117:         /// </summary>
  118:         [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
  119:         public IActionResult Error()
  120:         {
  121:             return View(new Ia.TentPlay.Wa.Models.ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
  122:         }
  123:  
  124:         /////////////////////////////////////////////////////////////////////////////////
  125:         /////////////////////////////////////////////////////////////////////////////////
  126:     }
  127:  
  128:     /////////////////////////////////////////////////////////////////////////////////
  129:     /////////////////////////////////////////////////////////////////////////////////
  130: }