Example #1
0
        void IAlertService.UnRegister(AlertSchema schema)
        {
            if (schema == null)
            {
                throw new ArgumentNullException("schema");
            }

            _schemas.Remove(schema.EntityType);
        }
Example #2
0
		void IAlertService.UnRegister(AlertSchema schema)
		{
			if (schema == null)
				throw new ArgumentNullException("schema");

			_schemas.Remove(schema.EntityType);
		}
Example #3
0
		void IAlertService.Register(AlertSchema schema)
		{
			if (schema == null)
				throw new ArgumentNullException("schema");

			_schemas[schema.EntityType] = schema;
		}