Пример #1
0
        public void Gerenate_AppFeatures(TDContext db)
        {
            var appFeatureApps = AppFeatures.Split(',');

            foreach (var item in appFeatureApps)
            {
                db.FeatureApps.Add(new FeatureApp()
                {
                    Name = item
                });
            }
        }