Exemplo n.º 1
0
        /// <inheritdoc />
        public async Task CreateAsync(ApplicationVersionMonth month)
        {
            if (month == null)
            {
                throw new ArgumentNullException(nameof(month));
            }

            await _uow.InsertAsync(month);
        }
Exemplo n.º 2
0
 public async Task UpdateAsync(ApplicationVersionMonth month)
 {
     await _uow.UpdateAsync(month);
 }