示例#1
0
 internal static string SELECT(IAcreedor source)
 {
     return(SELECT(new QueryConditions()
     {
         Acreedor = source.IGetInfo()
     }));
 }
示例#2
0
		public static string SELECT(IAcreedor acreedor)
		{
			QueryConditions conditions = new QueryConditions { Acreedor = acreedor.IGetInfo() };
			conditions.TipoAcreedor[0] = acreedor.ETipoAcreedor;
            if (acreedor.ETipoAcreedor == ETipoAcreedor.Empleado)
                return Employee.SELECT_PAGOS_NOMINAS();
            else
                return SELECT_BASE(conditions);
		}
        public static string SELECT(IAcreedor item)
        {
            QueryConditions conditions = new QueryConditions
            {
                TipoAcreedor = new ETipoAcreedor[1] {
                    item.ETipoAcreedor
                },
                Acreedor = item.IGetInfo()
            };

            return(SELECT(conditions));
        }
示例#4
0
 public static string SELECT(IAcreedor source)
 {
     return(Payment.SELECT(source.IGetInfo(), true));
 }