public ActionResult DownloadOtherFee(int?id) { var organisationId = UserOrganisationId; var centreId = UserCentreId; if (id != null) { var data = NidanBusinessService.CreateOtherFeeRecieptBytes(organisationId, centreId, id.Value); return(File(data, ".pdf", "Other Fee Reciept.pdf")); } return(null); }