/// <summary>
        /// Selects all records as a collection (List) of UserMaster sorted by the sort expression
        /// </summary>
        public static List <UserMaster> SelectAll(string sortByExpression)
        {
            List <UserMaster> objUserMasterCol = UserMasterDataLayer.SelectAll();

            return(SortByExpression(objUserMasterCol, sortByExpression));
        }
 /// <summary>
 /// Selects all records as a collection (List) of UserMaster
 /// </summary>
 public static List <UserMaster> SelectAll()
 {
     return(UserMasterDataLayer.SelectAll());
 }