コード例 #1
0
 public async Task<IActionResult> AdminLoginDetails(string userName, string password)
 {
     CommonResponseWithUserName response = login.AdminLoginDetails(userName, password);
     return Ok(response);
 }