You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
495 B

  1. using EasyBL.WebApi.Filters;
  2. using EasyBL.WEBAPP.SYS;
  3. using Entity.ShowEasyDtos;
  4. using Entity.Sugar;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Net;
  9. using System.Net.Http;
  10. using System.Web.Http;
  11. namespace WebApp.Controllers
  12. {
  13. public class CurrencyController : ApiController
  14. {
  15. [HttpGet]
  16. public HttpResponseMessage CurrencyList(string Lang)
  17. {
  18. return new CurrencyService().GetCurrency(Lang);
  19. }
  20. }
  21. }