Ejemplo n.º 1
0
        public ActionResult Create([Bind(Include = "Id,Name,Email,Salary,DateBirth,Genre")] PersonPhysicalPersonViewModel person)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    int id = this.GenerateId();

                    context.PERSON.Add(new PERSON()
                    {
                        ID    = id,
                        NAME  = person.Name,
                        EMAIL = person.Email
                    });

                    context.PHYSICALPERSON.Add(new PHYSICALPERSON()
                    {
                        PERSON_ID = id,
                        ID        = id,
                        SALARY    = person.Salary,
                        DATEBIRTH = person.DateBirth,
                        GENRE     = person.Genre
                    });

                    context.SaveChanges();
                    return(RedirectToAction("Index"));
                }
                return(View(person));
            }
            catch (Exception)
            {
                throw;
            }
        }
Ejemplo n.º 2
0
        private PersonPhysicalPersonViewModel Get_Person_PhysicalPersonForID(int?id)
        {
            try
            {
                var query = from p in context.PERSON
                            join pp in context.PHYSICALPERSON
                            on p.ID equals pp.PERSON_ID
                            where p.ID == id
                            select p;

                PersonPhysicalPersonViewModel ppr = new PersonPhysicalPersonViewModel();

                foreach (var item_p in query)
                {
                    ppr.Id    = item_p.ID;
                    ppr.Name  = item_p.NAME;
                    ppr.Email = item_p.EMAIL;

                    foreach (var item_pp in item_p.PHYSICALPERSON)
                    {
                        ppr.Salary    = item_pp.SALARY;
                        ppr.DateBirth = DateTime.Parse(item_pp.DATEBIRTH.ToString().Replace("00:00:00", ""));
                        ppr.Genre     = item_pp.GENRE;
                    }
                }

                return(ppr);
            }
            catch (Exception)
            {
                throw;
            }
        }
Ejemplo n.º 3
0
        public ActionResult Edit(int?id, int?opc)
        {
            if (opc == 1)
            {
                try
                {
                    if (id == null)
                    {
                        return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
                    }

                    List <SelectListItem> genres = new List <SelectListItem>();
                    genres.Add(new SelectListItem()
                    {
                        Value = "M", Text = "Male", Selected = true
                    });
                    genres.Add(new SelectListItem()
                    {
                        Value = "F", Text = "Female"
                    });
                    ViewData["Genres"] = genres;

                    PersonPhysicalPersonViewModel person = this.Get_Person_PhysicalPersonForID(id);
                    if (person == null)
                    {
                        return(HttpNotFound());
                    }

                    return(View(person));
                }
                catch (Exception)
                {
                    throw;
                }
            }
            else
            {
                try
                {
                    PHYSICALPERSON pp  = context.PHYSICALPERSON.Find(id);
                    PERSON         pes = context.PERSON.Find(id);

                    context.PHYSICALPERSON.Remove(pp);
                    context.PERSON.Remove(pes);

                    context.SaveChanges();

                    return(RedirectToAction("Index"));
                }
                catch (Exception)
                {
                    throw;
                }
            }
        }
Ejemplo n.º 4
0
        public ActionResult Index(int?p_numPage)
        {
            try
            {
                int sizePage = 10;
                int numPage  = p_numPage ?? 1;

                var query = from p in context.PERSON
                            join pp in context.PHYSICALPERSON
                            on p.ID equals pp.PERSON_ID
                            select p;

                list = new List <PersonPhysicalPersonViewModel>();

                foreach (var item_p in query)
                {
                    PersonPhysicalPersonViewModel ppr = new PersonPhysicalPersonViewModel();

                    ppr.Id    = item_p.ID;
                    ppr.Name  = item_p.NAME;
                    ppr.Email = item_p.EMAIL;

                    foreach (var item_pp in item_p.PHYSICALPERSON)
                    {
                        ppr.Salary    = item_pp.SALARY;
                        ppr.DateBirth = DateTime.Parse(item_pp.DATEBIRTH.ToString().Replace("00:00:00", ""));
                        ppr.Genre     = item_pp.GENRE;
                    }

                    list.Add(ppr);
                }

                List <SelectListItem> orders = new List <SelectListItem>();
                orders.Add(new SelectListItem()
                {
                    Text = "Name", Value = "name", Selected = true
                });
                orders.Add(new SelectListItem()
                {
                    Text = "Date Of Birth", Value = "date"
                });
                ViewData["orders"] = orders;

                return(View(list.OrderBy(p => p.Name).ToPagedList(numPage, sizePage)));
            }
            catch (Exception)
            {
                throw;
            }
        }
Ejemplo n.º 5
0
        public List <PersonPhysicalPersonViewModel> GetPhysicalPerson_SalaryUnderAVG()
        {
            {
                try
                {
                    using (dbRegistrationContext context = new dbRegistrationContext())
                    {
                        decimal avg_sal = context.PHYSICALPERSON.Average(p => p.SALARY);

                        var query = from p in context.PERSON
                                    join pp in context.PHYSICALPERSON
                                    on p.ID equals pp.PERSON_ID
                                    where pp.SALARY < avg_sal
                                    select p;

                        List <PersonPhysicalPersonViewModel> list = new List <PersonPhysicalPersonViewModel>();

                        foreach (var item_p in query)
                        {
                            PersonPhysicalPersonViewModel ppr = new PersonPhysicalPersonViewModel();

                            ppr.Id    = item_p.ID;
                            ppr.Name  = item_p.NAME;
                            ppr.Email = item_p.EMAIL;

                            foreach (var item_pp in item_p.PHYSICALPERSON)
                            {
                                ppr.Salary    = item_pp.SALARY;
                                ppr.DateBirth = item_pp.DATEBIRTH;
                                ppr.Genre     = item_pp.GENRE;
                            }

                            list.Add(ppr);
                        }
                        return(list);
                    }
                }
                catch (Exception)
                {
                    throw;
                }
            }
        }
Ejemplo n.º 6
0
        public ActionResult Edit([Bind(Include = "Id,Name,Email,Salary,DateBirth,Genre")] PersonPhysicalPersonViewModel person)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    PERSON pes = new PERSON()
                    {
                        ID    = person.Id,
                        NAME  = person.Name,
                        EMAIL = person.Email
                    };

                    PHYSICALPERSON pp = new PHYSICALPERSON()
                    {
                        ID        = person.Id,
                        PERSON_ID = person.Id,
                        SALARY    = person.Salary,
                        DATEBIRTH = person.DateBirth,
                        GENRE     = person.Genre
                    };

                    context.PERSON.Add(pes);
                    context.Entry(pes).State = EntityState.Modified;

                    context.PHYSICALPERSON.Add(pp);
                    context.Entry(pp).State = EntityState.Modified;

                    context.SaveChanges();

                    return(RedirectToAction("Index"));
                }
                return(View(person));
            }
            catch (Exception)
            {
                throw;
            }
        }
Ejemplo n.º 7
0
        public PersonPhysicalPersonViewModel GetPhysicalPerson_LowerSalary()
        {
            try
            {
                using (dbRegistrationContext context = new dbRegistrationContext())
                {
                    decimal lowSal = context.PHYSICALPERSON.Min(p => p.SALARY);

                    var query = from p in context.PERSON
                                join pp in context.PHYSICALPERSON
                                on p.ID equals pp.PERSON_ID
                                where pp.SALARY == lowSal
                                select p;

                    PersonPhysicalPersonViewModel ppr = new PersonPhysicalPersonViewModel();

                    foreach (var item_p in query)
                    {
                        ppr.Id    = item_p.ID;
                        ppr.Name  = item_p.NAME;
                        ppr.Email = item_p.EMAIL;

                        foreach (var item_pp in item_p.PHYSICALPERSON)
                        {
                            ppr.Salary    = item_pp.SALARY;
                            ppr.DateBirth = item_pp.DATEBIRTH;
                            ppr.Genre     = item_pp.GENRE;
                        }
                    }
                    return(ppr);
                }
            }
            catch (Exception)
            {
                throw;
            }
        }