コード例 #1
0
ファイル: SensorController.cs プロジェクト: brolam/sbdia_cs
        public async Task <ActionResult <IEnumerable <SensorItemDto> > > GetSensorAll()
        {
            var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);

            return(await this._dbContext.GetSensors(userId));
        }