public bool EmployerFollower(int EmployerId, int UserId)
        {
            bool isInserted = _homeRepositories.EmployerFollower(EmployerId, UserId);

            if (isInserted)
            {
                return(true);
            }
            throw new UserNotCreatedException("Unable to follow company, please contact your teck deck.");
        }