public ActionResult Create([Bind(Include = "Deliverable_ID,Deliverable_deadline,Deliverable_end_date,Deliverable_start_date,Name,Budget,Estimated_manhours,Manhours_charged,Last_update,Last_update_by,Project_ID,Progress_status")] DELIVERABLE dELIVERABLE) { if (ModelState.IsValid) { var projectname = db.PROJECTs.FirstOrDefault(t => t.Project_ID == dELIVERABLE.Project_ID); MailMessage message = new System.Net.Mail.MailMessage(); string fromEmail = "*****@*****.**"; string password = "******"; string toEmail = "*****@*****.**"; message.From = new MailAddress(fromEmail); message.To.Add(toEmail); message.Subject = "A new deliverable has been created."; message.Body = String.Format("A deliverable called {0} has been created for project titled {1}.", dELIVERABLE.Name, projectname.Name); message.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure; using (SmtpClient smtpClient = new SmtpClient("smtp.gmail.com", 587)) { smtpClient.EnableSsl = true; smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network; smtpClient.UseDefaultCredentials = false; smtpClient.Credentials = new NetworkCredential(fromEmail, password); smtpClient.Send(message.From.ToString(), message.To.ToString(), message.Subject, message.Body); } db.DELIVERABLES.Add(dELIVERABLE); db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Project_ID = new SelectList(db.PROJECTs, "Project_ID", "Name", dELIVERABLE.Project_ID); return(View(dELIVERABLE)); }
public ActionResult Edit([Bind(Include = "Deliverable_ID,Deliverable_deadline,Deliverable_end_date,Deliverable_start_date,Name,Budget,Estimated_manhours,Manhours_charged,Last_update,Last_update_by,Project_ID,Progress_status")] DELIVERABLE dELIVERABLE) { if (ModelState.IsValid) { string userId = User.Identity.GetUserId(); var user = (new ApplicationDbContext()).Users.FirstOrDefault(s => s.Id == userId); MailMessage message = new System.Net.Mail.MailMessage(); string fromEmail = "*****@*****.**"; string password = "******"; string toEmail = "*****@*****.**"; message.From = new MailAddress(fromEmail); message.To.Add(toEmail); message.Subject = "A deliverable has been edited."; message.Body = String.Format("A deliverable called {0} has been edited by manager of username {1}.", dELIVERABLE.Name, user.UserName); message.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure; using (SmtpClient smtpClient = new SmtpClient("smtp.gmail.com", 587)) { smtpClient.EnableSsl = true; smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network; smtpClient.UseDefaultCredentials = false; smtpClient.Credentials = new NetworkCredential(fromEmail, password); smtpClient.Send(message.From.ToString(), message.To.ToString(), message.Subject, message.Body); } db.Entry(dELIVERABLE).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Project_ID = new SelectList(db.PROJECTs, "Project_ID", "Name", dELIVERABLE.Project_ID); return(View(dELIVERABLE)); }
public ActionResult DeleteConfirmed(int id) { DELIVERABLE dELIVERABLE = db.DELIVERABLES.Find(id); db.DELIVERABLES.Remove(dELIVERABLE); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "Deliverable_ID,Deliverable_deadline,Deliverable_end_date,Deliverable_start_date,Name,Budget,Estimated_manhours,Manhours_charged,Last_update,Last_update_by,Project_ID,Progress_status")] DELIVERABLE dELIVERABLE) { if (ModelState.IsValid) { db.Entry(dELIVERABLE).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Project_ID = new SelectList(db.PROJECTs, "Project_ID", "Name", dELIVERABLE.Project_ID); return(View(dELIVERABLE)); }
// GET: DELIVERABLEs/Details/5 public ActionResult Details(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } DELIVERABLE dELIVERABLE = db.DELIVERABLES.Find(id); if (dELIVERABLE == null) { return(HttpNotFound()); } return(View(dELIVERABLE)); }
public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } DELIVERABLE dELIVERABLE = db.DELIVERABLES.Find(id); if (dELIVERABLE == null) { return(HttpNotFound()); } ViewBag.Project_ID = new SelectList(db.PROJECTs, "Project_ID", "Name", dELIVERABLE.Project_ID); return(View(dELIVERABLE)); }