B2B.cs 308 B

123456789101112131415
  1. using Microsoft.AspNetCore.Http;
  2. using Microsoft.AspNetCore.Mvc;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace BO.AppServer.Web.Services
  8. {
  9. [Route("api/[controller]")]
  10. [ApiController]
  11. public class B2B : ControllerBase
  12. {
  13. }
  14. }