예제 #1
0
 public void Load <T>(string Path) where T : IPersistanceModel
 {
     this.Path = Path;
     Model     = SerializerService.Load <T>(SerializeType.XML, Path);
     InjectorService.Register(Model).As <IPersistanceModel>();
 }