示例#1
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new TaskPackageXOwnerXTaskDataModel();

            PropertyMapper.CopyProperties(data, values);

            TaskPackageXOwnerXTaskDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#2
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new FieldConfigurationModeDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            base.Update(values);
        }
示例#3
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new TestSuiteDataModel();

            PropertyMapper.CopyProperties(data, values);

            TestCaseManagement.Components.DataAccess.TestSuiteDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#4
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new TaskXActivityInstanceDataModel();

            PropertyMapper.CopyProperties(data, values);

            TaskTimeTracker.Components.BusinessLayer.Task.TaskXActivityInstanceDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#5
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new TaskAlgorithmDataModel();

            PropertyMapper.CopyProperties(data, values);

            TaskTimeTracker.Components.Module.TimeTracking.TaskAlgorithmDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#6
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new ProductivityAreaFeatureDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            TaskTimeTracker.Components.BusinessLayer.ProductivityAreaFeatureDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#7
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new UseCaseActorDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            TaskTimeTracker.Components.BusinessLayer.RequirementAnalysis.UseCaseActorDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#8
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new ThemeDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            Framework.Components.Core.ThemeDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#9
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new EntityDateRangeStateDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            EntityDateRangeStateDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#10
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new TaskRunDataModel();

            PropertyMapper.CopyProperties(data, values);

            Framework.Components.TasksAndWorkflow.TaskRunDataManager.Update(data, SessionVariables.RequestProfile);

            base.Update(values);
        }
示例#11
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new ProjectPortfolioGroupXProjectPortfolioDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            ProjectPortfolioGroupXProjectPortfolioDataManager.Update(data, SessionVariables.RequestProfile);
            InlineEditingList.Data = GetData();
        }
示例#12
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new ActivityXDeliverableArtifactDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            ActivityXDeliverableArtifactDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#13
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new FunctionalityOwnerDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);

            TaskTimeTracker.Components.Module.ApplicationDevelopment.FunctionalityOwnerDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#14
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data = new ApplicationUserProfileImageMasterDataModel();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);
            data.Image = profileImage;

            Framework.Components.ApplicationUser.ApplicationUserProfileImageMasterDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#15
0
        protected override void Update(Dictionary <string, string> values)
        {
            // set data
            var data = new MenuDataModel();

            // copies properties from values dictionary object to Menu data object
            PropertyMapper.CopyProperties(data, values);

            // save datga
            MenuDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }
示例#16
0
        protected override void Update(Dictionary <string, string> values)
        {
            var data  = new ModuleOwnerDataModel();
            var datas = GetData();

            // copies properties from values dictionary object to data object
            PropertyMapper.CopyProperties(data, values);
            data.TotalHoursWorked = (int)datas.Rows[0][ModuleOwnerDataModel.DataColumns.TotalHoursWorked];
            data.ApplicationId    = (int)datas.Rows[0][ModuleOwnerDataModel.DataColumns.ApplicationId];
            TaskTimeTracker.Components.Module.ApplicationDevelopment.ModuleOwnerDataManager.Update(data, SessionVariables.RequestProfile);
            base.Update(values);
        }