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

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

    1: using Microsoft.AspNetCore.Authorization;
    2: using Microsoft.AspNetCore.Mvc;
    3: using System.Diagnostics;
    4:  
    5: namespace Ia.Ftn.Wa.Controllers
    6: {
    7:     ////////////////////////////////////////////////////////////////////////////
    8:  
    9:     /// <summary publish="true">
   10:     ///
   11:     /// </summary>
   12:     /// 
   13:     /// <remarks> 
   14:     /// Copyright � 2006-2025 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   15:     /// </remarks> 
   16:     [Authorize]
   17:     public class AboutController : Controller
   18:     {
   19:         /////////////////////////////////////////////////////////////////////////////////
   20:  
   21:         /// <summary>
   22:         ///
   23:         /// </summary>
   24:         public IActionResult Index()
   25:         {
   26:             return View();
   27:         }
   28:  
   29:         /////////////////////////////////////////////////////////////////////////////////
   30:  
   31:         /// <summary>
   32:         ///
   33:         /// </summary>
   34:         public IActionResult Team()
   35:         {
   36:             return View();
   37:         }
   38:  
   39:         /////////////////////////////////////////////////////////////////////////////////
   40:  
   41:         /// <summary>
   42:         ///
   43:         /// </summary>
   44:         [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
   45:         public IActionResult Error()
   46:         {
   47:             return View(new Ia.Ftn.Wa.Models.ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
   48:         }
   49:  
   50:         /////////////////////////////////////////////////////////////////////////////////
   51:         /////////////////////////////////////////////////////////////////////////////////
   52:     }
   53:  
   54:     /////////////////////////////////////////////////////////////////////////////////
   55:     /////////////////////////////////////////////////////////////////////////////////
   56: }