Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. [Authorize]
  2. public class FabricomApiController : WebApiController
  3. {
  4. public FabricomApiController()
  5. {
  6. // Constructor
  7. }
  8.  
  9. [HttpPost]
  10. public Response PostFabricom(Request request1)
  11. {
  12. try
  13. {
  14. // Builds a request and sends a request.
  15. }
  16. catch (Exception ex)
  17. {
  18. // Logs Exception
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement