public Oferta DeleteOffert(Oferta s)
 {
     if (s.Equals(null))
     {
         throw new System.ArgumentException("Student does not exist!");
     }
     return(offerRepository.Delete(s));
 }