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

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

    1: using Microsoft.AspNetCore.Identity;
    2: using Microsoft.AspNetCore.Mvc.Rendering;
    3:  
    4: namespace Ia.Ftn.Wa.Models.Application
    5: {
    6:     ////////////////////////////////////////////////////////////////////////////
    7:  
    8:     /// <summary publish="true">
    9:     ///
   10:     /// </summary>
   11:     /// 
   12:     /// <remarks> 
   13:     /// Copyright � 2006-2025 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   14:     ///
   15:     /// 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
   16:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   17:     ///
   18:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   19:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   20:     /// 
   21:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   22:     /// 
   23:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   24:     /// </remarks> 
   25:     public class IdentityViewModel
   26:     {
   27:         /// <summary/>
   28:         public Cl.Models.StaffIdentityUser CurrentStaffIdentityUser { get; set; }
   29:  
   30:         /// <summary/>
   31:         public UserManager<Ia.Ftn.Cl.Models.StaffIdentityUser> UserManager { get; set; }
   32:  
   33:         /// <summary/>
   34:         public RoleManager<IdentityRole> RoleManager { get; set; }
   35:  
   36:  
   37:         /// <summary/>
   38:         public SelectList RoleSelectList { get; set; }
   39:  
   40:         /// <summary/>
   41:         public string RoleSelectedValue { get; set; }
   42:  
   43:         /// <summary/>
   44:         public string CreateRoleNameText { get; set; }
   45:  
   46:         /// <summary/>
   47:         public string RoleListText { get; set; }
   48:  
   49:  
   50:         /// <summary/>
   51:         public List<Cl.Models.StaffIdentityUser> StaffIdentityUserList { get; set; }
   52:  
   53:         /// <summary/>
   54:         public string StaffIdentityUserListEditId { get; set; }
   55:  
   56:  
   57:         /// <summary/>
   58:         public SelectList UserSelectList { get; set; }
   59:  
   60:         /// <summary/>
   61:         public string UserSelectedValue { get; set; }
   62:  
   63:  
   64:         /// <summary/>
   65:         public SelectList UserRoleSelectList { get; set; }
   66:  
   67:         /// <summary/>
   68:         public string UserRoleSelectedValue { get; set; }
   69:  
   70:         /// <summary/>
   71:         public string RoleUserListLabel { get; set; }
   72:  
   73:         /// <summary/>
   74:         public bool AddButtonEnabled { get; set; }
   75:  
   76:         /// <summary/>
   77:         public bool DeleteButtonEnabled { get; set; }
   78:  
   79:  
   80:  
   81:  
   82:  
   83:  
   84:  
   85:         /// <summary/>
   86:         public string CreateUserFirstNameText { get; set; }
   87:  
   88:         /// <summary/>
   89:         public string CreateUserMiddleNameText { get; set; }
   90:  
   91:         /// <summary/>
   92:         public string CreateUserLastNameText { get; set; }
   93:  
   94:         /// <summary/>
   95:         public string CreateUserEmailText { get; set; }
   96:  
   97:         /// <summary/>
   98:         public string CreateUserUserNameText { get; set; }
   99:  
  100:         /// <summary/>
  101:         public string CreateUserPhoneNumberText { get; set; }
  102:  
  103:         /// <summary/>
  104:         public string CreateUserPasswordText { get; set; }
  105:  
  106:         /// <summary/>
  107:         public string CreateUserConfirmPasswordText { get; set; }
  108:  
  109:         /// <summary/>
  110:         public string FrameworkId { get; set; }
  111:  
  112:         /// <summary/>
  113:         public bool IsHead { get; set; }
  114:  
  115:         /// <summary/>
  116:         public SelectList Framework1SelectList { get; set; }
  117:  
  118:         /// <summary/>
  119:         public string Framework1SelectedValue { get; set; }
  120:  
  121:         /// <summary/>
  122:         public SelectList Framework2SelectList { get; set; }
  123:  
  124:         /// <summary/>
  125:         public string Framework2SelectedValue { get; set; }
  126:  
  127:         /// <summary/>
  128:         public SelectList Framework3SelectList { get; set; }
  129:  
  130:         /// <summary/>
  131:         public string Framework3SelectedValue { get; set; }
  132:  
  133:         /// <summary/>
  134:         public SelectList Framework4SelectList { get; set; }
  135:  
  136:         /// <summary/>
  137:         public string Framework4SelectedValue { get; set; }
  138:  
  139:         /// <summary/>
  140:         public SelectList Framework5SelectList { get; set; }
  141:  
  142:         /// <summary/>
  143:         public string Framework5SelectedValue { get; set; }
  144:  
  145:         /// <summary/>
  146:         public SelectList Framework6SelectList { get; set; }
  147:  
  148:         /// <summary/>
  149:         public string Framework6SelectedValue { get; set; }
  150:  
  151:  
  152:         /// <summary/>
  153:         public Ia.Cl.Models.Result Result { get; set; }
  154:  
  155:         /// <summary/>
  156:         public Ia.Cl.Models.Result UpdateResult { get; set; }
  157:     }
  158:  
  159:     ////////////////////////////////////////////////////////////////////////////
  160:     ////////////////////////////////////////////////////////////////////////////
  161: }
  162: