/// <summary>
 /// Create a new AnticipoDet object.
 /// </summary>
 /// <param name="numLinea">Initial value of the NumLinea property.</param>
 /// <param name="numAnticipo">Initial value of the NumAnticipo property.</param>
 /// <param name="fechaCobro">Initial value of the FechaCobro property.</param>
 /// <param name="idEmpresa">Initial value of the IdEmpresa property.</param>
 public static AnticipoDet CreateAnticipoDet(global::System.Int32 numLinea, global::System.Int32 numAnticipo, global::System.DateTime fechaCobro, global::System.Int32 idEmpresa)
 {
     AnticipoDet anticipoDet = new AnticipoDet();
     anticipoDet.NumLinea = numLinea;
     anticipoDet.NumAnticipo = numAnticipo;
     anticipoDet.FechaCobro = fechaCobro;
     anticipoDet.IdEmpresa = idEmpresa;
     return anticipoDet;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the AnticipoDet EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToAnticipoDet(AnticipoDet anticipoDet)
 {
     base.AddObject("AnticipoDet", anticipoDet);
 }
        public Boolean Guardar(clsAnticipoDetalle  ad)
        {
            try
            {

                using (RecursosHumanosEntities ent = new RecursosHumanosEntities())
                {

                    AnticipoDet  nomd = new AnticipoDet  ()
                    {

                        NumLinea = ad.NumLinea,
                        NumAnticipo = ad.NumAnticipo ,
                        IdPersona = ad.IdPersona,

                        ValorLiquido =Convert .ToDecimal ( ad.ValorLiquido),
                        IdEmpresa = ad.IdEmpresa,

                    };
                    ent.AddToAnticipoDet (nomd);
                    ent.SaveChanges();

                }
                return true;
            }

            catch (Exception)
            {
                return false;
            }
        }