Пример #1
0
        public async Task DeleteBuildStepsByProjectId(int projectId)
        {
            var buildSteps = await _buildStepService.GetBuildStepsByProjectIdAsync(projectId);

            foreach (var step in buildSteps)
            {
                await _buildStepService.Delete(step.Id);
            }
        }
Пример #2
0
 public async Task Delete(int id)
 {
     await _buildStepService.Delete(id);
 }