public async Task <IHttpActionResult> GetAllTaxes()
        {
            var result = await _taxesService.GetAllTaxesAsync();

            if (result == null)
            {
                return(NotFound());
            }

            return(Ok(result));
        }