public async Task <IHttpActionResult> Get([FromUri] int currentPage)
 {
     return(Ok(await repository.GetList(currentPage)));
 }