public List <PaymentOption> get_all_active(Int32 languageId = 0, string sortField = "", string sortOrder = "") { // Create the list to return List <PaymentOption> posts = PaymentOption.GetAllActive(languageId, sortField, sortOrder); // Return the list return(posts); } // End of the get_all_active method