Skip to content

Instantly share code, notes, and snippets.

@viniciussanchez
Created April 9, 2021 02:58
Show Gist options
  • Save viniciussanchez/37a3d81661698ee3403536cf4f03982f to your computer and use it in GitHub Desktop.
Save viniciussanchez/37a3d81661698ee3403536cf4f03982f to your computer and use it in GitHub Desktop.
Violação do SPR
unit Solid.SRP.Violacao;
interface
type
TLogger = class
private
procedure SendMail;
public
procedure Log;
end;
implementation
procedure TLogger.Log;
begin
// write log
SendMail;
end;
procedure TLogger.SendMail;
begin
// Send mail
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment