Skip to content

Instantly share code, notes, and snippets.

@Adolfi
Created March 28, 2022 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adolfi/e6794f7c2feedca60031e63432b84e08 to your computer and use it in GitHub Desktop.
Save Adolfi/e6794f7c2feedca60031e63432b84e08 to your computer and use it in GitHub Desktop.
public class ProductsController : UmbracoApiController
{
private readonly IEmailService emailService;
public ProductsController(IEmailService emailService)
{
this.emailService = emailService;
}
public IEnumerable<string> GetAllProducts()
{
this.emailService.SendEmailToAdmin();
return new[] { "Table", "Chair", "Desk", "Computer", "Beer fridge" };
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment