public static SMSNotificationService GetSmsNotificationService()
        {
            var dbContext = FactoryService.GetContext();

            if (_SMSNotificationService == null)
            {
                _SMSNotificationService = new SMSNotificationService(dbContext);
            }
            return(_SMSNotificationService);
        }
        public static IdentityService GetIdentityService()
        {
            var dbContext = FactoryService.GetContext();

            if (_identityService == null)
            {
                _identityService = new IdentityService(dbContext);
            }
            return(_identityService);
        }