コード例 #1
0
        public FormLog()
        {
            actividadService = new ActividadService();
            InitializeComponent();
            IEnumerable <Object> lista = actividadService.listarActividades();

            dataGridView1.DataSource = lista;
        }
コード例 #2
0
 public OrdenProduccionActividadEditor(IOrdenProduccionActividadView view)
 {
     this.mView = view;
     this.mOrdenProduccionActividadService = OrdenProduccionActividadService.Instance;
     this.mOrdenProduccionService          = OrdenProduccionService.Instance;
     this.mActividadService = ActividadService.Instance;
     this.Initialize();
 }
コード例 #3
0
 public FormInventarioStock()
 {
     productoService  = new ProductoService();
     actividadService = new ActividadService();
     InitializeComponent();
     this.Text        = SessionHelper.accion + " Stock";
     this.label1.Text = SessionHelper.accion + " Stock";
     CargarDG();
 }
コード例 #4
0
 public ImportarEditor(IImportarView view)
 {
     this.mView               = view;
     this.mImportarService    = ImportarService.Instance;
     this.mActividadService   = ActividadService.Instance;
     this.mCentroCostoService = CentroCostoService.Instance;
     this.mConceptoService    = ConceptoService.Instance;
     this.mPersonaService     = PersonaService.Instance;
     this.mSucursalService    = SucursalService.Instance;
     this.Initialize();
 }
コード例 #5
0
 public PlanillaEditor(IPlanillaView view)
 {
     this.mView                   = view;
     this.mPlanillaService        = PlanillaService.Instance;
     this.mAreaService            = AreaService.Instance;
     this.mSucursalService        = SucursalService.Instance;
     this.mPersonaService         = PersonaService.Instance;
     this.mOrdenProduccionService = OrdenProduccionService.Instance;
     this.mActividadService       = ActividadService.Instance;
     this.mCentroCostoService     = CentroCostoService.Instance;
     this.mNovedadService         = NovedadService.Instance;
     this.mConfiguracionService   = ConfiguracionService.Instance;
     this.mNumeracionService      = NumeracionService.Instance;
     this.Initialize();
 }
コード例 #6
0
 public ActividadController(IActividadService actividadService)
 {
     this.actividadService = actividadService;
 }
コード例 #7
0
ファイル: ActividadEditor.cs プロジェクト: yovannyZ/Prueba-HH
 public ActividadEditor(IActividadView view)
 {
     this.mView             = view;
     this.mActividadService = ActividadService.Instance;
     this.Initialize();
 }
コード例 #8
0
 public ActividadController(IActividadService service)
 {
     _service = service;
 }
コード例 #9
0
 public ActividadController(IActividadService actividadService, IMapper mapper)
 {
     _actividadService = actividadService;
     _mapper           = mapper;
 }
コード例 #10
0
 public ActividadAppService(IActividadService service) : base(service)
 {
     this.service = service;
 }//Fin del método