Пример #1
0
 public ActionResult InsertContact(Contact contact)
 {
     if (contact != null)
     {
         contact.Id = Guid.NewGuid();
         contactService.Add(contact);
         return Json(true);
     }
     return Json(false);
 }
Пример #2
0
 public ActionResult DelContact(Contact contact)
 {
     try
     {
         if (contact != null)
         {
             contactService.Remove(contact.Id);
             return Json(true);
         }
         return Json(false);
     }
     catch (Exception ex)
     {
         return Json(false);
     }
 }
Пример #3
0
 public Contact Update(Contact contact)
 {
     contactRepository.Update(contact);
     return contact;
 }
Пример #4
0
 public ActionResult UpdateContact(Contact contact)
 {
     if (contact != null)
     {
         contactService.Update(contact);
         return Json(true);
     }
     return Json(false);
 }
Пример #5
0
 public Contact Add(Contact contact)
 {
     contactRepository.Add(contact);
     return contact;
 }