fixed pagination where it wasnt rounding up so <x.5 would show not 1 page less than required. fix issue introduced in last branch where group drop down/filter wouldnt work. #51
18 lines
328 B
C#
18 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public enum SortOptions
|
|
{
|
|
None,
|
|
FirstNameAscending,
|
|
FirstNameDescending,
|
|
LastNameAscending,
|
|
LastNameDescending,
|
|
}
|
|
}
|