public async Task <ActionResult> Update([FromRoute] string id, [FromBody] MatchUpdateInputModel input)
        {
            await this.matchService.Update(id, input);

            return(Ok());
        }
        public async Task Update(string id, MatchUpdateInputModel input)
        {
            var matchInput = this.mapper.Map <Match>(input);

            await this.Update <Match>("Matches", id, matchInput);
        }