I have a MainMethod which needs to call two methods Method1 and Method2 parallel. Both of them will return list of Employee but from different database. I need to call them parallel and then combine the results of Method1 and Method2 in MainMethod and then return result to the caller of MainMethod.
I greatly appreciate if people can tell what must be signatures of methods and what code I need to write I mean async/await keywords.