Add project files.
This commit is contained in:
		| @@ -0,0 +1,16 @@ | ||||
| using Core.Blueprint.DAL.Infrastructure.Context; | ||||
| using Core.Blueprint.DAL.Infrastructure.Contracts; | ||||
| using Core.Blueprint.Domain.Entities; | ||||
| using Microsoft.Extensions.Logging; | ||||
|  | ||||
| namespace Core.Blueprint.DAL.Infrastructure.Repository | ||||
| { | ||||
|     public class SampleItemRepository : RepositorySqlBase<SampleItem>, ISampleItemRepository | ||||
|     { | ||||
|         private readonly ILogger<SampleItemRepository> _logger; | ||||
|         public SampleItemRepository(SqlServerContext dbContext, ILogger<SampleItemRepository> logger) : base(dbContext) | ||||
|         { | ||||
|             _logger = logger; | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin