public async Task <IActionResult> Update(Guid id, AdvisorInputModel model) { await _service.Update(id, model); return(Ok()); }
private void Update(Guid id, AdvisorInputModel model) { Service.Update(id, model).Wait(); }
public async Task <IActionResult> Add(AdvisorInputModel model) { await _service.Add(model); return(Ok()); }
private void Add(AdvisorInputModel model) { Service.Add(model).Wait(); }