// GET: /<controller>/
        public ProjectManagementController(sspmContext context) //=> this.context = context;
        {
            this.context = context;
            CultureInfo en = new CultureInfo("en-US");

            Thread.CurrentThread.CurrentCulture = en;
        }
        public TimeSheetController(sspmContext context) //=> this.context = context;
        {
            this.context = context;
            CultureInfo en = new CultureInfo("en-US");

            Thread.CurrentThread.CurrentCulture = en;
        }
        public HomeController(sspmContext context, IToastNotification toastNotification) //=> this.context = context;
        {
            this.context = context;
            CultureInfo en = new CultureInfo("en-US");

            Thread.CurrentThread.CurrentCulture = en;
            _toastNotification = toastNotification;
        }
Exemple #4
0
 public UserManagementController(sspmContext context) => this.context = context;
 public UserSspmsController(sspmContext context)
 {
     _context = context;
 }
 public MenuManagenentController(sspmContext context) => this.context = context;
Exemple #7
0
 public SecurityController(sspmContext context)
 {
     this.context = context;
 }
Exemple #8
0
 public APICall1Controller(sspmContext context) => this.context = context;