private void Add(MgaInputModel model) { Service.Add(model).Wait(); }
public async Task <IActionResult> Add(MgaInputModel model) { await _service.Add(model); return(Ok()); }