public ActionResult SendNotification(DeviceModel deviceModel, string message) { var device = AutoMapper.Mapper.Map<Device>(deviceModel); var responce = _notificationService.sendNotification(device, message); ViewBag.responce = responce; return PartialView("SendNotification", deviceModel); }
public ActionResult AddNotification(DeviceModel device) { return PartialView("SendNotification", device); }