public Either <UserServicesStatus, bool> DeleteByID(string id)
        {
            var res = _advertisement.DeleteByID(id);

            if (!res)
            {
                return(UserServicesStatus.NotFoundUser);
            }
            return(res);
        }