示例#1
0
        public async Task <ActionResult <IEnumerable <LockOperation> > > GetLockOperations(int lockId, int userId)
        {
            var result = await _locksService.GetOperations(lockId, userId);

            return(Ok(result));
        }