public async Task <IActionResult> Ship2(DataSourceRequest command,
                                                ERTech.Web.Areas.Reports.Models.ShipListModel model)
        {
            var(ShipModelList, totalCount) = await _setupDataViewModelService.PrepareShipListModel(model, command.Page, command.PageSize);

            var gridModel = new DataSourceResult
            {
                Data  = ShipModelList,
                Total = totalCount
            };

            return(Json(gridModel));
        }