示例#1
0
 public CombosService(ICombosRepository combosRepository, IProductosRepository productosRepository,
                      IDetallesComboRepository detallesComboRepository)
 {
     this.combosRepository        = combosRepository;
     this.detallesComboRepository = detallesComboRepository;
     this.productosRepository     = productosRepository;
 }
示例#2
0
 public DetallesComboService(IDetallesComboRepository detallesComboRepository)
 {
     this.detallesComboRepository = detallesComboRepository;
 }
示例#3
0
 public CombosRepository(IConfiguration configuration,
                         IDetallesComboRepository detallesComboRepository) : base(configuration)
 {
     this.detallesComboRepository = detallesComboRepository;
 }