Commit 028f8dcb by Alex Nasyr

cosmetic

parent ca48b6e6
......@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace SocialMinistryDataExchange.Controllers {
[ApiController]
public class apiController : ControllerBase {
private ISMRepository _repository;
private readonly ISMRepository _repository;
public apiController(ISMRepository repository) {
_repository = repository;
......
......@@ -7,8 +7,9 @@ using Microsoft.Extensions.Logging;
namespace SocialMinistryDataExchange.Model {
public class SMRepository : ISMRepository {
private IContingentContext _contingentContext;
private readonly IContingentContext _contingentContext;
private readonly ILogger _logger;
public SMRepository() {
}
public SMRepository(IContingentContext contingentContext, ILogger<SMRepository> logger) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment