Пример #1
0
 public ItemsController()
 {
     this.ItemsDAO       = new ItemsDAO(this.Context);
     this.ItemsLogic     = new ItemsLogic(this.Context);
     this.ItemDetailDAO  = new ItemDetailDAO(this.Context);
     this.ItemConvertDAO = new ItemConvertDAO(this.Context);
 }
Пример #2
0
 public ItemsLogic(BSContext context) : base(context)
 {
     this.Context        = context;
     this.ItemsDAO       = new ItemsDAO(this.Context);
     this.ItemUnitDAO    = new ItemUnitDAO(this.Context);
     this.ItemTypeDAO    = new ItemTypeDAO(this.Context);
     this.ItemDetailDAO  = new ItemDetailDAO(this.Context);
     this.ItemConvertDAO = new ItemConvertDAO(this.Context);
 }