Exemplo n.º 1
0
Arquivo: Log.cs Projeto: TjcJose/Hi
 public int Add(BasLog model)
 {
     if (model == null)
     {
         return 0;
     }
     return dal.Add(model);
 }
Exemplo n.º 2
0
Arquivo: Log.cs Projeto: TjcJose/Hi
 public int Add(BasLog model)
 {
     try
     {
         return DataBase.ExecuteNonQuery("");
     }
     catch
     {
         return -1;
     }
 }