Пример #1
0
 public SubastaController(IBLSubasta subbl, IBLComentario combl, IBLProducto probl, IBLOferta ofebl, IBLUsuario usubl, IBLAtributo atrIBL, IBLAtributo_Subasta atrSubIBL, IBLFavorito favIBL)
 {
     this.subIBL    = subbl;
     this.comIBL    = combl;
     this.proIBL    = probl;
     this.ofeIBL    = ofebl;
     this.usuIBL    = usubl;
     this.atrIBL    = atrIBL;
     this.favIBL    = favIBL;
     this.atrSubIBL = atrSubIBL;
 }
Пример #2
0
 public OfertaController(IBLOferta bl, IBLSubasta blS, IBLUsuario blU)
 {
     this._bloferta  = bl;
     this._blsubasta = blS;
     this._blusuario = blU;
 }
Пример #3
0
 public CalificacionController(IBLCalificacion bl, IBLUsuario blU, IBLSubasta subIBL)
 {
     this._blcalificacion = bl;
     this.subIBL          = subIBL;
     this._blusuario      = blU;
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountController" /> class.
 /// </summary>
 public AccountController(IBLUsuario bLUsuario)
 {
     oIBLUsuario = bLUsuario;
 }
Пример #5
0
 public FavoritosController(IBLSubasta subbl, IBLUsuario usubl, IBLFavorito favIBL)
 {
     this.subIBL = subbl;
     this.usuIBL = usubl;
     this.favIBL = favIBL;
 }