Beispiel #1
0
        public async Task DeleteTest()
        {
            Interns[] list = await repo.GetListSeries();

            var targetDelete = list[0];
            await repo.Delete(targetDelete.id);
        }
Beispiel #2
0
 public async Task DeleteAsync(Guid id)
 {
     await repo.Delete(id);
 }
Beispiel #3
0
 public async Task DeleteAsync(Guid guid)
 {
     await _repo.Delete(guid);
 }