| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using Quadarax.Foundation.Core.QConsole.Attributes;
- using Quadarax.Foundation.Core.QConsole;
- using Quadarax.Foundation.Core.QConsole.Command.Base;
- using Quadarax.Foundation.Core.Value;
- namespace Quadarax.Application.QLiberace.Console.Commands
- {
- [CommandDefinition]
- internal class DbInstallCmd : AbstractCommand
- {
- #region *** Properties ***
- public override string Name => Constants.Commands.DbInstall.Name;
- public override string Description => Constants.Commands.DbInstall.Description;
- #endregion
- #region *** Constructor ***
- public DbInstallCmd(Engine engine) : base(engine)
- {
- }
- #endregion
-
- #region *** EXECUTE ***
- protected override Result OnExecute()
- {
- //TODO: ends here. Implements db_install
- throw new NotImplementedException();
- }
- #endregion
- #region *** Private operations ***
- #endregion
- }
- }
|