I am new to Angular.
I have WebAPI controller, which contains get method to return some data.
It is working fine while launching it separately from browser.
While calling the same method from Angular app, the get method is not called in WebAPI controller.
Here is my code for calling get method.
this.http.get('http://localhost:49422/api/CustomerRegister');
Thanks in Advance.