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); }
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); }
public bool Destroy(object IdLogPlanilla) { return(PnLogPlanilla.Destroy(IdLogPlanilla) == 1); }
public bool Delete(object IdLogPlanilla) { return(PnLogPlanilla.Delete(IdLogPlanilla) == 1); }