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
if curso_proba: | |
asignar(Grynberg) | |
if curso_analisis: | |
asignar(Hagman) | |
elif curso_numerico: | |
asignar(Menendez, demora = ~30min) | |
elif prioridad(Murmis) == alta: | |
asignar(Murmis) | |
asignar(Menendez, demora = ~30min) | |
else: |
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
// ******* NO COMPILÉ ESTE ARCHIVO ********** | |
abstract class MailMessageBuilder | |
{ | |
private MailMessage mailMessage = new MailMessage(); | |
public MailMessageBuilder WithTo(string to) | |
{ | |
mailMessage.To.Add(to); | |
return this; |