/// <inheritdoc />
        public async Task CreateAsync(ApplicationVersionMonth month)
        {
            if (month == null)
            {
                throw new ArgumentNullException(nameof(month));
            }

            await _uow.InsertAsync(month);
        }
 public async Task UpdateAsync(ApplicationVersionMonth month)
 {
     await _uow.UpdateAsync(month);
 }