Exemple #1
0
        public void Insert(int IdPlanillas, string Descripcion, string Usuario, DateTime?Fecha)
        {
            PnLogPlanilla item = new PnLogPlanilla();

            item.IdPlanillas = IdPlanillas;

            item.Descripcion = Descripcion;

            item.Usuario = Usuario;

            item.Fecha = Fecha;


            item.Save(UserName);
        }
Exemple #2
0
        public void Update(int IdLogPlanilla, int IdPlanillas, string Descripcion, string Usuario, DateTime?Fecha)
        {
            PnLogPlanilla item = new PnLogPlanilla();

            item.MarkOld();
            item.IsLoaded = true;

            item.IdLogPlanilla = IdLogPlanilla;

            item.IdPlanillas = IdPlanillas;

            item.Descripcion = Descripcion;

            item.Usuario = Usuario;

            item.Fecha = Fecha;

            item.Save(UserName);
        }
Exemple #3
0
 public bool Destroy(object IdLogPlanilla)
 {
     return(PnLogPlanilla.Destroy(IdLogPlanilla) == 1);
 }
Exemple #4
0
 public bool Delete(object IdLogPlanilla)
 {
     return(PnLogPlanilla.Delete(IdLogPlanilla) == 1);
 }