Skip to content

Commit

Permalink
rebranding DeleteRow to DeleteRows
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonV-Skyline committed Nov 27, 2024
1 parent 5596381 commit 8b556d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Utils.Protocol.Extension/ProtocolExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static class ProtocolExtension
/// <param name="tablePid">The ID of the table parameter.</param>
/// <param name="keysToDelete">The primary keys of the rows to remove.</param>
/// <exception cref="ArgumentNullException"><paramref name="keysToDelete"/> is <see langword="null"/>.</exception>
public static void DeleteRow(this SLProtocol protocol, int tablePid, IEnumerable<object> keysToDelete)
public static void DeleteRows(this SLProtocol protocol, int tablePid, IEnumerable<object> keysToDelete)
{
// Sanity checks
if (keysToDelete == null)
Expand Down Expand Up @@ -50,7 +50,7 @@ public static void DeleteRow(this SLProtocol protocol, int tablePid, IEnumerable
/// <param name="tablePid">The ID of the table parameter.</param>
/// <param name="keysToDelete">The primary keys of the rows to remove.</param>
/// <exception cref="ArgumentNullException"><paramref name="keysToDelete"/> is <see langword="null"/>.</exception>
public static void DeleteRow(this SLProtocol protocol, int tablePid, IEnumerable<string> keysToDelete)
public static void DeleteRows(this SLProtocol protocol, int tablePid, IEnumerable<string> keysToDelete)
{
// Sanity checks
if (keysToDelete == null)
Expand Down

0 comments on commit 8b556d1

Please sign in to comment.