public static void SearchProduct()
        {
            Console.WriteLine("a. Search By ID");
            Console.WriteLine("b. Search By Name");
            Console.WriteLine("c. Search By Short Code");
            Console.WriteLine("d. Search By Price");
            char ch3 = Convert.ToChar(Console.ReadLine());

            UserOperations.SearchProductMenu(ch3);
        }