public async Task Delete(Hunting hunt)
 {
     applicationDBContext.Hunting.Remove(hunt);
     await applicationDBContext.SaveChangesAsync();
 }
 public async Task Hunt(Hunting hunt)
 {
     applicationDBContext.Hunting.Add(hunt);
     await applicationDBContext.SaveChangesAsync();
 }