Skip to content

Instantly share code, notes, and snippets.

@jsanjuan2016
Last active February 11, 2021 12:21
Show Gist options
  • Save jsanjuan2016/d68747f2c10148e340901a86c1bfa8e6 to your computer and use it in GitHub Desktop.
Save jsanjuan2016/d68747f2c10148e340901a86c1bfa8e6 to your computer and use it in GitHub Desktop.
private readonly ICustomers _service;
public Client()
{
//Al estar accesibles de forma pública las implementaciones, un programador "despistado"
//podría saltarse el flujo de inversión de control y crear los objetos "a mano" mediante new
this._service = new Customers(new CustomerRepository());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment