Пример #1
0
        public void Remove(int id)
        {
            using (var Context = new DomainModel.DTO.EF.OnlineShoppingEntities())
            {
                try
                {
                    var Ref_Person = new Person();
                    Ref_Person = Context.Person.Find(id);
                    Context.Person.Remove(Ref_Person);



                    Context.SaveChanges();
                }
                catch (Exception)
                {
                    throw;
                }
                finally
                {
                    if (Context != null)
                    {
                        Context.Dispose();
                    }
                }
            }
        }
Пример #2
0
        public void Insert(string name, string surname, int username, int password)
        {
            using (var Context = new DomainModel.DTO.EF.OnlineShoppingEntities())
            {
                try
                {
                    DTO.EF.Person Ref_Person = new DTO.EF.Person();
                    Ref_Person.FirstName = name;
                    Ref_Person.Surname   = surname;
                    Ref_Person.UserName  = (username);
                    Ref_Person.Password  = (password);
                    Context.Person.Add(Ref_Person);
                    Context.SaveChanges();
                }
                catch (Exception)
                {
                    throw;
                }


                finally
                {
                    if (Context != null)
                    {
                        Context.Dispose();
                    }
                }
            }
        }
Пример #3
0
 public List <Person> Select()
 {
     using (var Context = new DomainModel.DTO.EF.OnlineShoppingEntities())
     {
         try
         {
             var Ref_Person = Context.Person.ToList();
             return(Ref_Person);
         }
         catch (Exception)
         {
             throw;
         }
         finally
         {
             if (Context != null)
             {
                 Context.Dispose();
             }
         }
     }
 }