コード例 #1
0
        public static int Insert(tblCustom customs)
        {
            var db = new dbTrainEntities(ConnectionController.GetConnection());

            customs.CreatedDate  = CommonFactory.GetCurrentDate();
            customs.ModifiedDate = CommonFactory.GetCurrentDate();

            db.AddTotblCustoms(customs);

            return(db.SaveChanges());
        }