public static string GetDeleteSuppliesLineItemUrl(this GrantAllocationAwardSuppliesLineItem suppliesLineItem)
 {
     return(DeleteUrlTemplate.ParameterReplace(suppliesLineItem.GrantAllocationAwardSuppliesLineItemID));
 }
Example #2
0
 public static void DeleteGrantAllocationAwardSuppliesLineItem(this IQueryable <GrantAllocationAwardSuppliesLineItem> grantAllocationAwardSuppliesLineItems, GrantAllocationAwardSuppliesLineItem grantAllocationAwardSuppliesLineItemToDelete)
 {
     DeleteGrantAllocationAwardSuppliesLineItem(grantAllocationAwardSuppliesLineItems, new List <GrantAllocationAwardSuppliesLineItem> {
         grantAllocationAwardSuppliesLineItemToDelete
     });
 }