public Spartane.Core.Classes.areas_Empresas.areas_EmpresasPagingModel ListaSelAll(int startRowIndex, int maximumRows, string Where, string Order)
        {
            var padstartRowIndex = _dataProvider.GetParameter();

            padstartRowIndex.ParameterName = "startRowIndex";
            padstartRowIndex.DbType        = DbType.Int32;
            padstartRowIndex.Value         = startRowIndex;

            var padmaximumRows = _dataProvider.GetParameter();

            padmaximumRows.ParameterName = "maximumRows";
            padmaximumRows.DbType        = DbType.Int32;
            padmaximumRows.Value         = maximumRows;

            var padWhere = _dataProvider.GetParameter();

            padWhere.ParameterName = "Where";
            padWhere.DbType        = DbType.String;
            padWhere.Value         = Where;

            var padOrder = _dataProvider.GetParameter();

            padOrder.ParameterName = "Order";
            padOrder.DbType        = DbType.String;
            padOrder.Value         = Order;

            var data = _dbContext.ExecuteStoredProcedureList <Spartane.Core.Classes.StoredProcedure.SpListSelAllareas_Empresas>("sp_ListSelAll_areas_Empresas", padWhere, padOrder, padstartRowIndex, padmaximumRows);

            areas_EmpresasPagingModel result = null;

            if (data != null)
            {
                result = new areas_EmpresasPagingModel
                {
                    areas_Empresass =
                        data.Select(m => new Spartane.Core.Classes.areas_Empresas.areas_Empresas
                    {
                        Clave    = m.areas_Empresas_Clave
                        , Nombre = m.areas_Empresas_Nombre

                                   //,Id = m.Id
                    }).ToList()
                };
            }
            return(result);
        }
        public Spartane.Core.Domain.areas_Empresas.areas_EmpresasPagingModel ListaSelAll(int startRowIndex, int maximumRows, string Where, string Order)
        {
            areas_EmpresasPagingModel result = null;

            return(result);
        }