Ejemplo n.º 1
0
 public List <string> GetRacaIds()
 {
     using (var ctx = _provider.GetContexto())
     {
         return(ctx.Racas.Select(d => d.Id).ToList());
     }
 }
Ejemplo n.º 2
0
 public void Escreve(int code, string message, string url = null)
 {
     using (var ctx = _provider.GetContexto())
     {
         InsertLog(new Entidade.Log
         {
             Dt_created = DateTime.Now,
             Message    = message,
             Status     = code,
             Url        = url
         });
     }
 }
Ejemplo n.º 3
0
 public void AdicionaCategoria(Categoria categoria)
 {
     using (var ctx = _provider.GetContexto())
     {
         if (!ctx.Categorias.Where(linha => linha.Id == categoria.Id).Any())
         {
             ctx.Categorias.Add(new CatAPIDataCore.Entidade.Categoria
             {
                 Id   = categoria.Id,
                 Name = categoria.Name
             });
             ctx.SaveChanges();
         }
     }
 }