public FrmInformeDatosCalculoSalarioJefatura()
 {
     this.bancoBL =  BancoBL.GetInstance();
     this.sucursalBL =  SucursalBL.GetInstance();
     this.periodoBL =  PeriodoBL.GetInstance();
     this.colaboradorBL = ColaboradorBL.GetInstance();
 }
예제 #2
0
        public static BancoBL GetInstance()
        {
            if (singletonInstance == null)
                singletonInstance = new BancoBL();

            return singletonInstance;
        }
 /// <summary>
 /// constructor
 /// </summary>
 public FrmCalculoAguinaldo()
 {
     this.planillaEncabezadoBL =  PlanillaEncabezadoBL.GetInstance();
     this.sucursalBL =  SucursalBL.GetInstance();
     this.periodoBL =  PeriodoBL.GetInstance();
     this.colaboradorBL =  ColaboradorBL.GetInstance();
     this.bancoBL =  BancoBL.GetInstance();
 }
 /// <summary>
 /// constructor
 /// </summary>
 public FrmCalculoFalsoPlanillaJefatura()
 {
     this.planillaEncabezadoBL =  PlanillaEncabezadoBL.GetInstance();
     this.sucursalBL =  SucursalBL.GetInstance();
     this.periodoBL =  PeriodoBL.GetInstance();
     this.bancoBL =  BancoBL.GetInstance();
     this.colaboradorBL =  ColaboradorBL.GetInstance();
 }
 /// <summary>
 /// constructor
 /// </summary>
 public FrmCalculoLiquidacion()
 {
     this.planillaEncabezadoBL =  PlanillaEncabezadoBL.GetInstance();
     this.sucursalBL = SucursalBL.GetInstance();
     this.deduccionBL = DeduccionBL.GetInstance();
     this.periodoBL = PeriodoBL.GetInstance();
     this.colaboradorBL = ColaboradorBL.GetInstance();
     this.bancoBL = BancoBL.GetInstance();
     this.productoBL = ProductoBL.GetInstance();
     this.planillaDetalleBL = PlanillaDetalleBL.GetInstance();
 }
 /// <summary>
 /// constructor
 /// </summary>
 public FrmCalculoPlanillaHistorico()
 {
     this.listaDetalles = new List<PlanillaDetalle>();
     this.planillaEncabezadoBL =  PlanillaEncabezadoBL.GetInstance();
     this.sucursalBL =  SucursalBL.GetInstance();
     this.deduccionBL =  DeduccionBL.GetInstance();
     this.periodoBL =  PeriodoBL.GetInstance();
     this.colaboradorBL =  ColaboradorBL.GetInstance();
     this.bancoBL =  BancoBL.GetInstance();
     this.productoBL =  ProductoBL.GetInstance();
     this.planillaDetalleBL =  PlanillaDetalleBL.GetInstance();
 }
        /// <summary>
        /// constructor
        /// </summary>
        public FrmConsultaColaborador()
        {
            this.colaboradorBL = ColaboradorBL.GetInstance();
            this.provinciaBL = ProvinciaBL.GetInstance();
            this.cantonBL = CantonBL.GetInstance();
            this.distritoBL = DistritoBL.GetInstance();
            this.nacionalidadBL = NacionalidadBL.GetInstance();

            this.sucursalBL = SucursalBL.GetInstance();
            this.departamentoBL = DepartamentoBL.GetInstance();
            this.puestoBL = PuestoBL.GetInstance();
            this.bancoBL = BancoBL.GetInstance();
        }
예제 #8
0
 /// <summary>
 /// constructor
 /// </summary>
 public ColaboradorBL()
 {
     this.colaboradorDA = new ColaboradorDA();
     this.nacionalidadBL =  NacionalidadBL.GetInstance();
     this.provinciaBL = ProvinciaBL.GetInstance();
     this.cantonBL = CantonBL.GetInstance();
     this.distritoBL = DistritoBL.GetInstance();
     this.centroCostoBL = CentroCostoBL.GetInstance();
     this.departamentoBL = DepartamentoBL.GetInstance();
     this.sucursalBL = SucursalBL.GetInstance();
     this.puestoBL = PuestoBL.GetInstance();
     this.bancoBL = BancoBL.GetInstance();
     this.operadoraBL = OperadoraBL.GetInstance();
 }
        /// <summary>
        /// constructor
        /// </summary>
        public FrmCatalogoColaboradorJefatura()
        {
            this.colaboradorBL =  ColaboradorBL.GetInstance();
            this.provinciaBL =  ProvinciaBL.GetInstance();
            this.cantonBL =  CantonBL.GetInstance();
            this.distritoBL =  DistritoBL.GetInstance();
            this.nacionalidadBL =  NacionalidadBL.GetInstance();

            this.sucursalBL =  SucursalBL.GetInstance();
            this.departamentoBL =  DepartamentoBL.GetInstance();
            this.puestoBL =  PuestoBL.GetInstance();
            this.bancoBL =  BancoBL.GetInstance();
            this.operadoraBL =  OperadoraBL.GetInstance();
        }
예제 #10
0
 /// <summary>
 /// constructor
 /// </summary>
 public FrmCatalogoBanco()
 {
     this.bancoBL = BancoBL.GetInstance();
 }
 public FrmInformeDatosCalculoSalario()
 {
     this.bancoBL =  BancoBL.GetInstance();
     this.sucursalBL =  SucursalBL.GetInstance();
     this.periodoBL =  PeriodoBL.GetInstance();
 }