public GetCategoryMasterQM GetCategoryMaster() { var model = new GetCategoryMasterQM(); using (var connection = new DbConnectionProvider().CreateConnection()) { connection.Open(); var command = new CategoryMasterSelectCommand { Connection = connection }; model = command.Execute(); } return(model); }
public GetCategoryMasterQM Execute() { var response = new GetCategoryMasterQM(); using (var sqlCommand = CreateCommand()) { sqlCommand.Connection = Connection; sqlCommand.CommandText = "[dbo].[uspGetCategoryMaster]"; sqlCommand.CommandType = CommandType.StoredProcedure; //sqlCommand.Parameters.Add(AddParameter("@PageSize", SsDbType.Int, ParameterDirection.Input, model.PageSize)); //sqlCommand.Parameters.Add(AddParameter("@PageIndex", SsDbType.Int, ParameterDirection.Input, model.PageIndex)); sqlCommand.Parameters.Add(AddParameter("@RecordCount", SsDbType.Int, ParameterDirection.Output, default(int))); using (var reader = SsDbCommandHelper.ExecuteReader(sqlCommand)) { response.CategoryMasterList = reader.ToList <CategoryMasterModel>(); } response.RecordCount = Convert.ToInt32(sqlCommand.Parameters["@RecordCount"].Value); } return(response); }