Differences between revisions 3 and 4
Revision 3 as of 2019-01-01 16:34:36
Size: 550
Editor: 68
Comment:
Revision 4 as of 2019-01-01 16:37:52
Size: 123
Editor: 68
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
{{{#!highlight csharp {{{#!highlight bash
Line 5: Line 5:
public class UserLogic
{
    private GoogleOAuthService _authService;
    private GoogleEmailService _emailService;
#!/bin/bash
Line 10: Line 7:
    public UserLogic()
    {
        _authService = new GoogleOAuthService();
        _emailService = new GoogleEmailService();
    }

    public void Register(string emailAddress, string password)
    {
        var authResult = _authService.RegisterUser(emailAddress,password);
        _emailService.SendMail(emailAddress, authResult.ConfirmationMessage);
    }
}
for i in $(find -iname ./ "*.java")
do
    echo $
done

Simple Page

Toggle line numbers
   1 #!/bin/bash
   2 
   3 for i in $(find -iname ./ "*.java")
   4 do
   5     echo $
   6 done

skip (last edited 2019-01-01 16:37:52 by 68)