コード例 #1
0
 public void UpdateItem(ItemToGetRidOff item)
 {
     if (item == null)
     {
         throw new ArgumentNullException(nameof(item));
     }
 }
コード例 #2
0
 public void DeleteItem(ItemToGetRidOff item)
 {
     if (item == null)
     {
         throw new ArgumentNullException(nameof(item));
     }
     _context.Items.Remove(item);
 }
コード例 #3
0
 public void CreateItem(ItemToGetRidOff item)
 {
     if (item == null)
     {
         throw new ArgumentNullException(nameof(item));
     }
     _context.Items.Add(item);
 }
コード例 #4
0
 public void CreateItem(ItemToGetRidOff cmd)
 {
     throw new System.NotImplementedException();
 }
コード例 #5
0
 public void UpdateItem(ItemToGetRidOff itm)
 {
     throw new System.NotImplementedException();
 }