Example #1
0
 public BusinessBase(SxcDbContext DbContext)
 {
     _context   = DbContext;
     _resultdto = new BusinessResultDto();
 }
Example #2
0
 public AccountBus(SxcDbContext DbContext)
     : base(DbContext)
 {
     _isSave = true;
 }
Example #3
0
        //private StoreResultDto _result;

        public StoreBus(SxcDbContext DbContext)
            : base(DbContext)
        {
        }
Example #4
0
 public IntegralBus(SxcDbContext DbContext)
     : base(DbContext)
 {
     _isSave = true;
 }