public async Task <IActionResult> GetSpecificCharacterOrders(string characterId) { var resp = _marketCharacterOrders.GetMultiple(new { characterId }); if (resp == null) { return(NotFound()); } return(await Task.FromResult(Json(resp))); }
public async Task <IActionResult> GetHistoryOrders(string regionId, string typeId) { var resp = _marketHistory.GetMultiple(new { regionId, typeId }); if (resp == null) { return(NotFound()); } return(await Task.FromResult(Json(resp))); }