示例#1
0
 public async Task <ActionResult <string> > FindClosetMission([FromBody] AddressDto address)
 {
     try
     {
         return(await _missionService.GetClosetMission(address));
     }
     catch
     {
         return(this.StatusCode(StatusCodes.Status500InternalServerError, "Error"));
     }
 }