diff --git a/Wreck/Controller/AbstractController.cs b/Wreck/Controller/AbstractController.cs index 9b5b289..fe1b574 100644 --- a/Wreck/Controller/AbstractController.cs +++ b/Wreck/Controller/AbstractController.cs @@ -24,13 +24,13 @@ public abstract class AbstractController : IController private FileSystemInfo startPath; - private readonly PreviewService service; + private readonly WreckService service; protected static IController instance; protected AbstractController() { - this.service = new PreviewService(); + this.service = new WreckService(); instance = this; } @@ -49,7 +49,7 @@ public FileSystemInfo StartPath get { return startPath; } } - public PreviewService Service + public WreckService Service { get { return service; } } diff --git a/Wreck/Service/PreviewService.cs b/Wreck/Service/WreckService.cs similarity index 97% rename from Wreck/Service/PreviewService.cs rename to Wreck/Service/WreckService.cs index 0a05075..53a1b5d 100644 --- a/Wreck/Service/PreviewService.cs +++ b/Wreck/Service/WreckService.cs @@ -12,7 +12,7 @@ namespace Wreck.Service /// /// Description of PreviewService. /// - public class PreviewService + public class WreckService { /* public bool IsRestorable(FileSystemInfo startPath) diff --git a/Wreck/Wreck.csproj b/Wreck/Wreck.csproj index acb4094..324f1c7 100644 --- a/Wreck/Wreck.csproj +++ b/Wreck/Wreck.csproj @@ -101,7 +101,7 @@ - +