Exemple #1
0
        public string RemoveColour(string colourName)
        {
            ColourProfile removeColour = _entity.ColourProfile.FirstOrDefault(x => x.Colour == colourName);

            if (removeColour != null)
            {
                _entity.DeleteObject(removeColour);
                _entity.SaveChanges();
                return("Колір " + colourName + " видалено!");
            }
            else
            {
                return("Такого кольору в базі немає!");
            }
        }
Exemple #2
0
        public string AddColour(string colourName)
        {
            ColourProfile colourList = _entity.ColourProfile.FirstOrDefault(x => x.Colour == colourName);

            if (colourList == null)
            {
                ColourProfile newColour = new ColourProfile();
                newColour.Colour = colourName;
                _entity.AddToColourProfile(newColour);
                _entity.SaveChanges();
                return("Колір " + colourName + " добавлено!");
            }
            else
            {
                return("Такий колір в базі вже є!");
            }
        }