-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created Parent interface to concentrate various issues
- Loading branch information
Cris Silva Jr
committed
Apr 15, 2018
1 parent
26735a1
commit 30319de
Showing
12 changed files
with
61 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ID Language File Edit Help Quit Preferences Help Start Next Name Results Contact Finish Save Cancel Docs All | ||
EN English File Edit Hep Quit Preferences Help Start Next Name Results saved Contact the test's applicator Finish Save Cancel Documentation Answer all questions | ||
PT-BR Português Brasileiro Arquivo Editar Ajuda Sair Preferências Ajuda Sair Continuar Nome Resultados salvos com sucesso! Contate o aplicador do teste. Finalizar Salvar Cancelar Documentação Responda todas as perguntas. | ||
ID Language File Edit Help Quit Preferences Help Start Next Name Results Contact Finish Save Cancel Docs All Instruct Data | ||
EN English File Edit Hep Quit Preferences Help Start Next Name Results saved Contact the test's applicator Finish Save Cancel Documentation Answer all questions Click the button below to proceed Data | ||
PT-BR Português Brasileiro Arquivo Editar Ajuda Sair Preferências Ajuda Sair Continuar Nome Resultados salvos com sucesso! Contate o aplicador do teste. Finalizar Salvar Cancelar Documentação Responda todas as perguntas. Aperte o botão abaixo para continuar. Dados |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace ScalemateForms.View | ||
{ | ||
public interface IParent | ||
{ | ||
void Show(); | ||
void Hide(); | ||
string Get(string tag); | ||
} | ||
} |