This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Teste de Form</title> | |
</head> | |
<body> | |
<form> | |
<label for=form-name>Name</label> | |
<input name=form-name id=form-name type=text required /> | |
<label for=form-email >Email</label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using System.Net; | |
using System.ServiceModel; | |
using System.ServiceModel.Web; | |
using ContactManager.Infrastructure; | |
using ContactManager.Repositories; | |
using ContactManager.Resources; | |
using Microsoft.ApplicationServer.Http.Dispatcher; | |
namespace ContactManager.APIs |
NewerOlder