public void NotifyAllCompanyUsers(NotificationInsertRequest model, List <CompanyEmployeeDomain> NotificationList)
        {
            //Instantialize a new NotifySmsRequest
            NotifySMSRequest       companyUser = new NotifySMSRequest();
            EmployeeProfileRequest Employee    = new EmployeeProfileRequest();

            Employee.companyId = model.CompanyId;

            //List<CompanyEmployeeDomain> notificationList = _UserProfileService.GetEmployeesByCompanyId(Employee.companyId);


            foreach (CompanyEmployeeDomain employee in NotificationList)
            {
                model.UserId    = employee.UserId;
                model.CompanyId = employee.CompanyId;



                companyUser.Phone = employee.PhoneNumber;

                //Send out text message
                try
                {
                    NotifySMSService.SendBidNotification(companyUser);
                }

                catch (ArgumentException)
                {
                    companyUser.Phone = "";
                }

                catch (Exception)
                {
                }

                SignalRHub.SendNotification(model);
            }
        }