Пример #1
0
        public static void Delete(int afbeeldingId)
        {
            AfbeeldingSQLContext asc = new AfbeeldingSQLContext();
            AfbeeldingRepository ar  = new AfbeeldingRepository(asc);

            ar.Delete(afbeeldingId.ToString());
        }
Пример #2
0
        public static List <Afbeelding> RetrieveAfbeeldingenByProductId(int id)
        {
            AfbeeldingSQLContext asc = new AfbeeldingSQLContext();
            AfbeeldingRepository ar  = new AfbeeldingRepository(asc);

            return(ar.RetrieveAfbeeldingenByProductId(id));
        }
Пример #3
0
        public static string Save(Afbeelding obj, int productId)
        {
            AfbeeldingSQLContext asc = new AfbeeldingSQLContext();
            AfbeeldingRepository ar  = new AfbeeldingRepository(asc);

            return(ar.Create(obj, productId));
        }
Пример #4
0
        public void RetrieveByProduct()
        {
            AfbeeldingSQLContext asc = new AfbeeldingSQLContext();

            int count = asc.RetrieveAfbeeldingenByProductId(1).Count;

            Assert.IsTrue(asc.RetrieveAfbeeldingenByProductId(1).Count > 0);
        }
Пример #5
0
        public void RelationRow()
        {
            AfbeeldingSQLContext asc = new AfbeeldingSQLContext();

            asc.MakeProductAfbeeldingRow(1, 1);
        }
Пример #6
0
        public void DeleteAfbeelding()
        {
            AfbeeldingSQLContext asc = new AfbeeldingSQLContext();

            asc.Delete("2");
        }
Пример #7
0
 public void NewAfbeelding()
 {
     AfbeeldingSQLContext asc = new AfbeeldingSQLContext();
 }