public static bool IsSoftDeleteAppliedForEntityDefault(this IBaseDbContext dbContext, Type eType)
 {
     return(typeof(ISoftDeleteEntity).IsAssignableFrom(eType) &&
            dbContext.IsFilterAppliedForEntity(QueryFilterConsts.SoftDeleteDefaultName, eType));
 }