Daniel Mackay [SSW]

Results 35 comments of Daniel Mackay [SSW]

Closing as review has been done and new PBIs created

Document existing decisions that we've already made - Usage of repositories / specifications

As per my conversation with @william-liebenberg @matt-goldman @Hona, we discussed the options of: - Having no mapper and using manual mappings - Switching to an alternative mapper - Staying with...

This has been linked into [awesome-clean-architecture](https://github.com/SSWConsulting/awesome-clean-architecture) via https://github.com/SSWConsulting/awesome-clean-architecture/pull/2

Consider: ```cs public interface IApplicationDbContext : IReadOnlyApplicationDbContext { Task SaveChangesAsync(CancellationToken cancellationToken); } public interface IReadOnlyApplicationDbContext { DbSet Customers { get; set; } DbSet Products { get; set; } DbSet Orders...