public async Task <Tax> Add(Tax model) { var entity = _taxRepository.Add(model); await _taxRepository.SaveChangeAsync(); return(model); }