Skip to content

Instantly share code, notes, and snippets.

@viniciussanchez
Last active April 9, 2021 03:05
Show Gist options
  • Save viniciussanchez/f3f58250f533d70799d39153f7762574 to your computer and use it in GitHub Desktop.
Save viniciussanchez/f3f58250f533d70799d39153f7762574 to your computer and use it in GitHub Desktop.
Refatoração do SRP (SOLID)
unit Solid.SRP.MailService;
interface
type
TMailService = class
public
procedure SendMail;
end;
implementation
procedure TMailService.SendMail;
begin
// send mail
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment