DbInstallCmd.cs 984 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Quadarax.Foundation.Core.QConsole.Attributes;
  2. using Quadarax.Foundation.Core.QConsole;
  3. using Quadarax.Foundation.Core.QConsole.Command.Base;
  4. using Quadarax.Foundation.Core.Value;
  5. namespace Quadarax.Application.QLiberace.Console.Commands
  6. {
  7. [CommandDefinition]
  8. internal class DbInstallCmd : AbstractCommand
  9. {
  10. #region *** Properties ***
  11. public override string Name => Constants.Commands.DbInstall.Name;
  12. public override string Description => Constants.Commands.DbInstall.Description;
  13. #endregion
  14. #region *** Constructor ***
  15. public DbInstallCmd(Engine engine) : base(engine)
  16. {
  17. }
  18. #endregion
  19. #region *** EXECUTE ***
  20. protected override Result OnExecute()
  21. {
  22. //TODO: ends here. Implements db_install
  23. throw new NotImplementedException();
  24. }
  25. #endregion
  26. #region *** Private operations ***
  27. #endregion
  28. }
  29. }