public void TestInitialize()
        {
            var kernel = StartUp.Initialize();

            this.PedidoRepository  = kernel.Get <IPedidoRepository>();
            this.VarillaRepository = kernel.Get <IVarillaRepository>();
        }
예제 #2
0
 public MarcoService(IMarcoRepository entityRepository, IVarillaRepository varillaRepository, IMarcoAssembler marcoAssembler) : base(entityRepository)
 {
     this.VarillaRepository = varillaRepository;
     this.MarcoAssembler    = marcoAssembler;
 }