Esempio n. 1
0
        internal static FileSystemDataBlueprint CreateBlueprint(int id)
        {
            if (_blueprints == null)
            {
                _blueprints = new List <FileSystemDataBlueprint>();
            }

            var blueprint = new FileSystemDataBlueprint();

            blueprint.Id = id;
            _blueprints.Add(blueprint);

            return(blueprint);
        }
Esempio n. 2
0
 internal static void RemoveBlueprint(FileSystemDataBlueprint fileSystemBlueprint)
 {
     _blueprints.Remove(fileSystemBlueprint);
 }