コード例 #1
0
ファイル: CombosService.cs プロジェクト: jmlansky/pediMe
 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
ファイル: CombosRepository.cs プロジェクト: jmlansky/pediMe
 public CombosRepository(IConfiguration configuration,
                         IDetallesComboRepository detallesComboRepository) : base(configuration)
 {
     this.detallesComboRepository = detallesComboRepository;
 }