I'd like to get this working:
Call: (Count & Page are used for pagination, so
Count = 20 and Page = 1 for example, for the first 20 values). Sorting should be by name
LeverancierService.GetLeveranciers(Function(el) el.Name,
Count, Page)
Equivalent in c#:
LeverancierService.GetLeveranciers(el= el.Name,
Count, Page)
Method that gives an
…