None of the constructors found with 'Autofac.Core.Activators .Reflection.DefaultConstructorFinder' on type

3 months ago
I suspect your issue could be related to using IDataContext :
    public class SamuraiDataService : ISamuraiDataService
    {
        private readonly IDataContext _dataContext;

        public SamuraiDataService(IDataContext dataContext)
        {
            _dataContext = dataContext;
        }

Look at
\Plugins\Nop.Plugin.Shipping.FixedByWeightByTotal\Services\ShippingByWeightByTotalService.cs
You should probably be using IRepository
  protected readonly IRepository<ShippingByWeightByTotalRecord> _sbwtRepository;
3 months ago
so instead of using idatacontext I use IRepository? Thanks for your attention buddy, I've been trying to solve this error for days now
3 months ago
New York wrote:
I suspect your issue could be related to using IDataContext :
    public class SamuraiDataService : ISamuraiDataService
    {
        private readonly IDataContext _dataContext;

        public SamuraiDataService(IDataContext dataContext)
        {
            _dataContext = dataContext;
        }

Look at
\Plugins\Nop.Plugin.Shipping.FixedByWeightByTotal\Services\ShippingByWeightByTotalService.cs
You should probably be using IRepository
  protected readonly IRepository<ShippingByWeightByTotalRecord> _sbwtRepository;


THANK YOUU, YOU LITERALY SAVE ME !!!