コード例 #1
0
        public bool CheckIfRequestIsSent(int sessionUserId, int targetUserId)
        {
            //fix this request pending thing
            var requestCheckModel = _networkRepository.GetRequestForUsers(sessionUserId, targetUserId);

            if (requestCheckModel != null)
            {
                return(true);
            }

            return(false);
        }