public static void Delete(int afbeeldingId) { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); AfbeeldingRepository ar = new AfbeeldingRepository(asc); ar.Delete(afbeeldingId.ToString()); }
public static List <Afbeelding> RetrieveAfbeeldingenByProductId(int id) { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); AfbeeldingRepository ar = new AfbeeldingRepository(asc); return(ar.RetrieveAfbeeldingenByProductId(id)); }
public static string Save(Afbeelding obj, int productId) { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); AfbeeldingRepository ar = new AfbeeldingRepository(asc); return(ar.Create(obj, productId)); }
public void RetrieveByProduct() { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); int count = asc.RetrieveAfbeeldingenByProductId(1).Count; Assert.IsTrue(asc.RetrieveAfbeeldingenByProductId(1).Count > 0); }
public void RelationRow() { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); asc.MakeProductAfbeeldingRow(1, 1); }
public void DeleteAfbeelding() { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); asc.Delete("2"); }
public void NewAfbeelding() { AfbeeldingSQLContext asc = new AfbeeldingSQLContext(); }