Skip to content

Instantly share code, notes, and snippets.

@ibebbs
Created May 9, 2019 14:25
Show Gist options
  • Save ibebbs/52ecb2051da6812d2a023cfc76cb0331 to your computer and use it in GitHub Desktop.
Save ibebbs/52ecb2051da6812d2a023cfc76cb0331 to your computer and use it in GitHub Desktop.
Showing tight-coupling
using Microsoft.AspNetCore.Mvc;
namespace FluentlyNamespaced.Group
{
[Route("api/group")]
[ApiController]
public class Controller : ControllerBase
{
public Controller(Person.Data.Source personDataSource, Person.Mapping.Provider personMappingProvider)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment