11 lines
249 B
C#
11 lines
249 B
C#
|
public class ProductsController : ApiController
|
||
|
{
|
||
|
private IProductRepository _repository;
|
||
|
|
||
|
public ProductsController(IProductRepository repository)
|
||
|
{
|
||
|
_repository = repository;
|
||
|
}
|
||
|
|
||
|
// Other controller methods not shown.
|
||
|
}
|