本文整理汇总了C#中BLL.EstudiosPreviosBL类的典型用法代码示例。如果您正苦于以下问题:C# EstudiosPreviosBL类的具体用法?C# EstudiosPreviosBL怎么用?C# EstudiosPreviosBL使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EstudiosPreviosBL类属于BLL命名空间,在下文中一共展示了EstudiosPreviosBL类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetPOLIZAS
public IList<vPOLIZAS> GetPOLIZAS()
{
EstudiosPreviosBL ep = new EstudiosPreviosBL();
IList<vPOLIZAS> lEp = ep.GetPOLIZAS();
return lEp;
//return ByAUtil.convertListToXML(lEp);
}
示例2: NuevodePlantilla
public ByARpt NuevodePlantilla(decimal id_plantilla)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
epBLL.ep = new ESTPREV();
epBLL.ep.ID = id_plantilla;
return epBLL.NuevodePlantilla();
}
示例3: GetvDEPENDENCIAD
public IList<vDEPENDENCIA> GetvDEPENDENCIAD()
{
string ide_ter = Usuario.UserName;
EstudiosPreviosBL ep = new EstudiosPreviosBL();
IList<vDEPENDENCIA> lEp = ep.GetvDEPENDENCIAD();
return lEp;
}
示例4: deleteEP
public static ByARpt deleteEP(decimal ID)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
EP_ESPTEC aeReg = new EP_ESPTEC();
aeReg.ID = ID;
ByARpt rpt = epBLL.Delete(aeReg);
return rpt;
}
示例5: deleteCapJur
public static ByARpt deleteCapJur(decimal ID)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
EP_CAP_JUR aeReg = new EP_CAP_JUR();
aeReg.ID = ID;
ByARpt rpt = epBLL.Delete(aeReg);
return rpt;
}
示例6: DeleteFP
public static ByARpt DeleteFP(decimal ID)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
EP_FORMA_PAGO aeReg = new EP_FORMA_PAGO();
aeReg.ID = ID;
ByARpt rpt = epBLL.Delete(aeReg);
return rpt;
}
示例7: GetEstPrevios
public vESTPREV GetEstPrevios(string id_ep, string tipo)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
ESTPREV ep = new ESTPREV();
ep.ID = Convert.ToInt32(id_ep);
epBLL.ep = ep;
vESTPREV Reg = epBLL.GetPK(tipo);
return Reg;
}
示例8: btnBuscar_Click
protected void btnBuscar_Click(object sender, EventArgs e)
{
EstudiosPreviosBL ep = new EstudiosPreviosBL();
string ent = HdTipo.Value;
if (ent.Equals("Terceros"))
{
grdBusqueda.DataSourceID = odsTerceros.ID;
}
grdBusqueda.DataBind();
modalPopup1.Show();
}
示例9: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
PMinutas pm = new PMinutas();
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
ESTPREV ep = new ESTPREV();
ep.ID = 1;
epBLL.ep = ep;
Reg = epBLL.GetPK("EL");
this.Title = String.Format("CONTRATO DE PRESTACIÓN DE SERVICIOS PROFESIONALES No. CELEBRADO ENTRE EL DEPARTAMENTO DEL CESAR Y YENNY YOHANA ALCOCER PLAZA.");
//Response.Write(Reg.OBJE_EP);
List<vPCLAUSULASPRINT> lst = pm.GetPClausulasP(1);
string print="";
foreach (vPCLAUSULASPRINT i in lst)
{
print += i.TEXTO;
}
Literal1.Text = print;
//GetClausulas
}
示例10: GetvDEPENDENCIAT
public static IList<vDEPENDENCIA> GetvDEPENDENCIAT()
{
EstudiosPreviosBL ep = new EstudiosPreviosBL();
IList<vDEPENDENCIA> lEp = ep.GetvDEPENDENCIA();
return lEp;
}
示例11: GetTerceros
public static string GetTerceros()
{
EstudiosPreviosBL ep = new EstudiosPreviosBL();
return ByAUtil.convertListToXML(ep.GetTerceros()); ;
}
示例12: deleteMun
public static ByARpt deleteMun(decimal ID)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
EP_CONMUN aeReg = new EP_CONMUN();
aeReg.ID = ID;
ByARpt rpt = epBLL.Delete(aeReg);
return rpt;
}
示例13: GuardarModEPList
public static ByARpt GuardarModEPList(List<ListEspTec> Reg)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
ByARpt rpt = new ByARpt();
//rpt.Filas = Reg.index;
foreach (ListEspTec i in Reg)
{
EP_ESPTEC aeReg = new EP_ESPTEC();
//Mapear Objeto DTO a Ado Entity FrameWork
Mapper.CreateMap<vEP_ESPTEC, EP_ESPTEC>();
//Mapper.CreateMap<Data, EP_ESPTEC>();
Mapper.Map(i.data, aeReg);
//Envia el registro a la base de datos
rpt = epBLL.Update(aeReg);
}
return rpt;
}
示例14: InsertCDP
public static ByARpt InsertCDP(vEP_CDP Reg)
{
EstudiosPreviosBL epBLL = new EstudiosPreviosBL();
EP_CDP aeReg = new EP_CDP();
//Mapear Objeto DTO a Ado Entity FrameWork
Mapper.CreateMap<vEP_CDP, EP_CDP>();
Mapper.Map(Reg, aeReg);
//Envia el registro a la base de datos
ByARpt rpt = epBLL.Insert(aeReg);
return rpt;
}
示例15: GetvVIGENCIAS
public static IList<vVIGENCIAS> GetvVIGENCIAS()
{
EstudiosPreviosBL ep = new EstudiosPreviosBL();
IList<vVIGENCIAS> lEp = ep.GetvVIGENCIAS();
return lEp;
}