示例#1
0
 public ComandaServices(Interfaces.IComandaRepository comandaRepository, Interfaces.IMesaRepository mesaRepository, Interfaces.IMesaAtendenteRepository mesaAtendenteRepository, IConfiguration configuration)
 {
     _comandaRepository       = comandaRepository;
     _mesaRepository          = mesaRepository;
     _mesaAtendenteRepository = mesaAtendenteRepository;
     _configuration           = configuration;
 }
示例#2
0
 public PedidoServices(Interfaces.IComandaRepository comandaRepository, IConfiguration configuration)
 {
     _comandaRepository = comandaRepository;
     _configuration     = configuration;
 }