Skip to content

Commit cd7d6a9

Browse files
author
Sergey Tregub
committed
Remove unneeded comments
1 parent 96ebc51 commit cd7d6a9

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

ProjectTemplates/ReferenceProject/Controllers/ProductsController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public class ProductsController: ControllerBase
2020
IMapper Mapper { get; }
2121
ILogger Logger { get; }
2222

23-
// TODO: Describe what does IOptionsSnapshot mean and what other options are there.
2423
public ProductsController(IProductsRepo productsRepo, IOptionsSnapshot<Settings.Products> options, IMapper mapper, ILogger<ProductsController> logger)
2524
{
2625
Logger = logger ?? throw new ArgumentNullException(nameof(logger));

ProjectTemplates/ReferenceProject/Settings/Products.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
namespace ReferenceProject.Settings
22
{
3-
// TODO: Describe Option Pattern
43
public class Products
54
{
65
public string TempFolder { get; set; }

0 commit comments

Comments
 (0)