Beispiel #1
0
        public async Task <IHttpActionResult> GetSessionByClientId(Guid id)
        {
            var result = await _sessionRepo.GetSessionsByClientId(id);

            return(Ok(result));
        }