コード例 #1
0
        public int AddCallCenterId()
        {
            var callCenter = new InfoCallCenter();

            DbEntities.InfoCallCenter.Add(callCenter);
            DbEntities.SaveChanges();
            return(callCenter.InfoCallCenterId);
        }
コード例 #2
0
        public void AddActivationCode(string code)
        {
            var callCenter = new InfoCallCenter {
                ActivationCode = code
            };

            DbEntities.InfoCallCenter.Add(callCenter);
            DbEntities.SaveChanges();
        }