Exemple #1
0
        public SpecialAd AddSpecial(string title, string description)
        {
            SpecialAd special = new SpecialAd();

            special.SpecialAdId = Specials.Max(i => i.SpecialAdId) + 1;
            special.Title       = title;
            special.Description = description;

            Specials.Add(special);
            (this).SaveChanges();
            return(special);
        }