public static RegraView EditarRegra(RegraView regra, string AlteradoPor, DateTime AlteradoEm) { Regra objdomin = regra.DeViewParaDomin(); objdomin.AlteradoPor = AlteradoPor; objdomin.AlteradoEm = AlteradoEm; regra = Executar.Sistema.Regra.AtualizarRegra(objdomin).DeDominParaView(); return(regra); }
public static RegraView CriarNovaRegra(RegraView regra, string CriadoPor, DateTime CriadoEm) { Regra objdomin = regra.DeViewParaDomin(); objdomin.CriadoPor = CriadoPor; objdomin.CriadoEm = CriadoEm; regra = Executar.Sistema.Regra.CriarNovaRegra(objdomin).DeDominParaView(); return(regra); }
public static bool ExcluirRegra(RegraView regra, string AlteradoPor, DateTime AlteradoEm) { Regra objdomin = regra.DeViewParaDomin(); objdomin.AlteradoPor = AlteradoPor; objdomin.AlteradoEm = AlteradoEm; bool ret = Executar.Sistema.Regra.ExcluirRegra(objdomin); return(ret); }