コード例 #1
0
 public bool Post([FromBody]Contact contact)
 {
     var repository = new ContactsRepository();
     repository.AddOrUpdate(contact);
     repository.SaveChanges();
     return true;
 }
コード例 #2
0
 public IEnumerable<Contact> GetContacts()
 {
     var repository = new ContactsRepository();
     return repository.GetAllContacts();
 }