public async Task <ActionResult> Delete(int id, FormCollection collection)
        {
            var currentEmployer = await EmployerFacade.GetEmployerByEmail(User.Identity.Name);

            try
            {
                await JobOfferFacade.DeleteJobOffer(id, currentEmployer);

                return(RedirectToAction("OffersOfCurrentEmployer"));
            }
            catch
            {
                return(View());
            }
        }