Пример #1
0
 public async Task AddAsync(Guid rotationId, Guid user, string league, string type, int spots)
 {
     var rotation = new Rotation(rotationId, user, league, type, spots);
     await _rotation.AddAsync(rotation);    
 }