Esempio n. 1
0
 //Fetch State from database
 private List <State> GetState(int countryID)
 {
     using (PersonalInformationDbContext dc = new PersonalInformationDbContext())
     {
         return(dc.States.Where(a => a.CountryId.Equals(countryID)).OrderBy(a => a.StateName).ToList());
     }
 }
Esempio n. 2
0
        //Get contact by ID
        public Contact GetContact(int contactID)
        {
            Contact contact = null;

            using (PersonalInformationDbContext dc = new PersonalInformationDbContext())
            {
                var v = (from a in dc.Contacts
                         join b in dc.Countries on a.CountryId equals b.CountryId
                         join c in dc.States on a.StateId equals c.StateId
                         where a.CountryId.Equals(contactID)
                         select new
                {
                    a,
                    b.CountryName,
                    c.StateName
                }).FirstOrDefault();
                if (v != null)
                {
                    contact             = v.a;
                    contact.CountryName = v.CountryName;
                    contact.StateName   = v.StateName;
                }
                return(contact);
            }
        }
Esempio n. 3
0
 private List <Country> GetCountry()
 {
     using (PersonalInformationDbContext dc = new PersonalInformationDbContext())
     {
         return(dc.Countries.OrderBy(a => a.CountryName).ToList());
     }
 }
Esempio n. 4
0
        public ActionResult DeleteContact(int id)
        {
            bool   status  = false;
            string message = "";

            using (PersonalInformationDbContext dc = new PersonalInformationDbContext())
            {
                var v = dc.Contacts.Where(a => a.ContactId.Equals(id)).FirstOrDefault();
                if (v != null)
                {
                    dc.Contacts.Remove(v);
                    dc.SaveChanges();
                    status  = true;
                    message = "Successfully Deleted!";
                }
                else
                {
                    return(HttpNotFound());
                }
            }

            return(new JsonResult {
                Data = new { status = status, message = message }
            });
        }
Esempio n. 5
0
 //return states as json data
 public JsonResult GetStateList(int countryID)
 {
     using (PersonalInformationDbContext dc = new PersonalInformationDbContext())
     {
         return(new JsonResult {
             Data = GetState(countryID), JsonRequestBehavior = JsonRequestBehavior.AllowGet
         });
     }
 }
Esempio n. 6
0
        public ActionResult Save(Contact c)
        {
            string message = "";
            bool   status  = false;

            if (ModelState.IsValid)
            {
                using (PersonalInformationDbContext dc = new PersonalInformationDbContext())
                {
                    if (c.CountryId > 0)
                    {
                        var v = dc.Contacts.Where(a => a.ContactId.Equals(c.ContactId)).FirstOrDefault();
                        if (v != null)
                        {
                            v.ContactPerson = c.ContactPerson;
                            v.ContactNo     = c.ContactNo;
                            v.CountryId     = c.CountryId;
                            v.StateId       = c.StateId;
                        }
                        else
                        {
                            return(HttpNotFound());
                        }
                    }
                    else
                    {
                        dc.Contacts.Add(c);
                    }
                    dc.SaveChanges();
                    status  = true;
                    message = "Successfully Saved.";
                }
            }
            else
            {
                message = "Error! Please try again.";
            }

            return(new JsonResult {
                Data = new { status = status, message = message }
            });
        }
Esempio n. 7
0
        public JsonResult GetContacts()
        {
            //List<Contact> all = db.Contacts.Include(x => x.Country).Include(x => x.State).ToList();

            List <Contact> all = null;

            using (PersonalInformationDbContext db = new PersonalInformationDbContext())
            {
                var contacts = (from a in db.Contacts
                                join b in db.Countries on a.CountryId equals b.CountryId
                                join c in db.States on a.StateId equals c.StateId
                                select new
                {
                    a,
                    b.CountryName,
                    c.StateName
                });

                if (contacts != null)
                {
                    all = new List <Contact>();

                    foreach (var i in contacts)
                    {
                        Contact con = i.a;
                        con.StateName   = i.StateName;
                        con.CountryName = i.CountryName;



                        all.Add(con);
                    }
                }
            }

            return(new JsonResult {
                Data = all, JsonRequestBehavior = JsonRequestBehavior.AllowGet
            });

            //return Json(all, JsonRequestBehavior.AllowGet);
        }