Beispiel #1
0
 /// <summary>
 /// Delete DVD will remove an item from DynamoDb
 /// </summary>
 /// <param name="dvd"></param>
 public void DeleteDvd(DVD dvd)
 {
     _dynamoService.DeleteItem(dvd);
 }
Beispiel #2
0
 /// <summary>
 /// Delete Sample will remove an item from DynamoDb
 /// </summary>
 /// <param name="sample"></param>
 public void DeleteSample(Sample sample)
 {
     _dynamoService.DeleteItem(sample);
 }
 public void DeleteRes(Reservation res)
 {
     _dynamoService.DeleteItem(res);
 }