//spara en annons el updaterar en annons public void SaveAnnons(Annons annons) { //Valedering GetValidation((Annons)annons); //insert eller update if (annons.AnnonsID == 0) { AnnonsDAL.InsertAnnons(annons); } else { AnnonsDAL.UpdateAnnons(annons); } }
//--------- Metoder ANNONSER ---------- //Hämta annonser public IEnumerable <Annons> GetAnnonser() { return(AnnonsDAL.GetAnnonser()); }
//Hämta EN med id annons public Annons GetAnnonsByID(int AnnonsId) { return(AnnonsDAL.GetAnnonsByID(AnnonsId)); }
//Tar bort en annons public void DeleteAnnons(int id) { AnnonsDAL.DeleteAnnons(id); }