Beispiel #1
0
        protected override void DoSave()
        {
            int    id          = Convert.ToInt32(GetParam("Id"));
            int    deployId    = Convert.ToInt32(GetParam("deployId"));
            int    serverId    = Convert.ToInt32(GetParam("ServerId"));
            string name        = GetParam("Name");
            string webSite     = GetParam("WebSite");
            string deployPath  = GetParam("DeployPath");
            string excludeFile = GetParam("ExcludeFile");
            var    projectItem = new DepProjectItem()
            {
                Id          = id,
                DepId       = deployId,
                Name        = name,
                WebSite     = webSite,
                DeployPath  = deployPath,
                ExcludeFile = excludeFile,
                ServerId    = serverId
            };

            SvnProcesser.UpateProjectItem(projectItem);
        }