public ActionResult Grid(GridParams gridParams)
        {
            var periode = _periodeService.GetPeriodesForGrid(new GetPeriodesRequest
            {
                Skip              = gridParams.DisplayStart,
                Take              = gridParams.DisplayLength,
                Search            = gridParams.Search,
                SortingDictionary = gridParams.SortingDictionary
            });
            var data = new
            {
                sEcho = gridParams.Echo + 1,
                iTotalDisplayRecords = periode.TotalRecords,
                iTotalRecords        = periode.Periodes.Count,
                aaData = periode.Periodes.Select(x => new
                {
                    x.Id,
                    x.IsActive,
                    Name = x.Name.ToString(),
                    x.Remark
                })
            };

            return(Json(data, JsonRequestBehavior.AllowGet));
        }