public MonthlyHours SearchMyTeamHrs(String EmployeeName, string SearchMonth)
        {
            MonthlyHours SearchResultMTH = new MonthlyHours();

            //search logic
            return(SearchResultMTH);
        }
        public MonthlyHours SearchEmpHours(string EmployeeName, DateTime SearchDate, string ManagerName = "")
        {
            MonthlyHours SearchResultMH = new MonthlyHours();

            //code to fetch data from Services
            return(SearchResultMH);
        }