partial void Deleterb_PortalSettings(rb_PortalSettings instance);
 partial void Updaterb_PortalSettings(rb_PortalSettings instance);
 partial void Insertrb_PortalSettings(rb_PortalSettings instance);
		private void detach_rb_PortalSettings(rb_PortalSettings entity)
		{
			this.SendPropertyChanging();
			entity.rb_Portals = null;
		}
Ejemplo n.º 5
0
        public PortalSettingsDTO TranslateRb_PortalSettingsIntoPortalSettingsDTO(rb_PortalSettings portalSettings)
        {
            PortalSettingsDTO _portalSettings = new PortalSettingsDTO();
            _portalSettings.PortalID = portalSettings.PortalID;
            _portalSettings.SettingName = portalSettings.SettingName;
            _portalSettings.SettingValue = portalSettings.SettingValue;

            return _portalSettings;
        }
Ejemplo n.º 6
0
        public rb_PortalSettings TranslatePortalSettingsDTOIntoRb_PortalSettings(PortalSettingsDTO portalSettings)
        {
            rb_PortalSettings _portalSettings = new rb_PortalSettings();
            _portalSettings.PortalID = portalSettings.PortalID;
            _portalSettings.SettingName = portalSettings.SettingName;
            _portalSettings.SettingValue = portalSettings.SettingValue;

            return _portalSettings;
        }