public Spartane.Core.Classes.Spartan_BR_Modifications_Log.Spartan_BR_Modifications_LogPagingModel 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.SpListSelAllSpartan_BR_Modifications_Log>("sp_ListSelAll_Spartan_BR_Modifications_Log", padWhere, padOrder, padstartRowIndex, padmaximumRows); Spartan_BR_Modifications_LogPagingModel result = null; if (data != null) { result = new Spartan_BR_Modifications_LogPagingModel { Spartan_BR_Modifications_Logs = data.Select(m => new Spartane.Core.Classes.Spartan_BR_Modifications_Log.Spartan_BR_Modifications_Log { ModificationId = m.Spartan_BR_Modifications_Log_ModificationId , Business_Rule = m.Spartan_BR_Modifications_Log_Business_Rule , Modification_Date = m.Spartan_BR_Modifications_Log_Modification_Date , Modification_Hour = m.Spartan_BR_Modifications_Log_Modification_Hour , Modification_User = m.Spartan_BR_Modifications_Log_Modification_User , Comments = m.Spartan_BR_Modifications_Log_Comments , Implementation_Code = m.Spartan_BR_Modifications_Log_Implementation_Code //,Id = m.Id }).ToList() }; } return(result); }
public Spartane.Core.Domain.Spartan_BR_Modifications_Log.Spartan_BR_Modifications_LogPagingModel ListaSelAll(int startRowIndex, int maximumRows, string Where, string Order) { Spartan_BR_Modifications_LogPagingModel result = null; return(result); }