internal static string SELECT(IAcreedor source) { return(SELECT(new QueryConditions() { Acreedor = source.IGetInfo() })); }
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)); }
public static string SELECT(IAcreedor source) { return(Payment.SELECT(source.IGetInfo(), true)); }