Example #1
0
        public async override Task Execute(PadSeriesDeleteCommand input, User?user)
        {
            var ps = await repo.FindById(input.Id) ?? throw new EntityNotFoundException();

            await repo.Delete(
                ps
                );
        }