public bool ContainsDeleted(System.Int32 uniqueID)
 {
     return(DeletedList.Count(i => i.UniqueID == uniqueID) > 0);
 }
 public bool ContainsDeleted(System.Int32 suppId)
 {
     return(DeletedList.Count(i => i.SuppId == suppId) > 0);
 }
Beispiel #3
0
 public bool ContainsDeleted(System.String itemId)
 {
     return(DeletedList.Count(i => i.ItemId == itemId) > 0);
 }
 public bool ContainsDeleted(System.Int32 orderId, System.Int32 lineNum)
 {
     return(DeletedList.Count(i => i.OrderId == orderId && i.LineNum == lineNum) > 0);
 }
 public bool ContainsDeleted(System.Int32 cartId)
 {
     return(DeletedList.Count(i => i.CartId == cartId) > 0);
 }
Beispiel #6
0
 public bool ContainsDeleted(System.String categoryId)
 {
     return(DeletedList.Count(i => i.CategoryId == categoryId) > 0);
 }
Beispiel #7
0
 public bool ContainsDeleted(System.Int32 orderId)
 {
     return(DeletedList.Count(i => i.OrderId == orderId) > 0);
 }
 public bool ContainsDeleted(System.Int32 accountId)
 {
     return(DeletedList.Count(i => i.AccountId == accountId) > 0);
 }
 public bool ContainsDeleted(System.String productId)
 {
     return(DeletedList.Count(i => i.ProductId == productId) > 0);
 }