ASP.NET Web API에서 여러 Get 메서드를 사용하여 라우팅 저는 ASP.NET MVC와 함께 Web Api를 사용하고 익숙합니다. asp.net 웹 사이트에서 몇 가지 가지 테스트를 수행하고 있습니다. 다음 서명이있는 4 개의 get 메소드가 있습니다. public List Get() { // gets all customer } public List GetCustomerByCurrentMonth() { // gets some customer on some logic } public Customer GetCustomerById(string id) { // gets a single customer using id } public Customer GetCustomerByUsername(string ..