コード例 #1
0
ファイル: BackendController.cs プロジェクト: kacey90/OryxDev
        public async Task <IActionResult> AddCustomers()
        {
            await _dataServices.AddCustomers();

            var customers = await _dataServices.GetCustomers();

            return(Ok(customers));
        }