请用 Visual Studio Code 或 Visual Studio 以 “.NET 6” 编码方式完成以下题目。请尽量少用第三方库。
| 时限 | 1小时 |
|---|---|
| 提交方法 | 请把代碼和相关的文件用ZIP(不可用RAR或其他格式)压缩后电邮至 joe.mao@gz.questwork.com。不要把其他脚手架文件和第三方插件压缩在内。 |
Public class StockController
{
Private readonly DbContext _dbContent;
Public stockController (DbContext db) {
_dbcontent = db;
}
}
public class api_response
{
public bool isexist { get; set; }
public string stockcode { get; set; }
}