예제 #1
0
 public Task <PagedViewModel <ReleaseModel> > GetAll(int projectId, int currentPage = 1, int rowsPerPage = 10, string sortColumn = "Start", bool isAsc = true)
 {
     return(_repository.GetAllAsync(currentPage, rowsPerPage, sortColumn, isAsc, projectId));
 }