Dan Martin
Dan Martin
I have used the ConnectionManager with Dapper in the past, I think it is mainly extension methods on the db connection. I have read that Rocky is recommending to just...
IPermits can inherit from IBusinessListBase to gain the behaviour of BusinessListBase. You can do something like ``` public interface IPermit : IBusinessBase { } public interface IPermits : IBusinessListBase {...
You can still inherit from BusinessListBase then you don't need to implement all the methods yourself. ``` public interface IPermit : IBusinessBase { } public interface IPermits : IBusinessListBase {...
` public interface IPermits : IBusinessListBase { }` will also work