public bool Create(Report model) { try { if (model == null) { return(false); } var create = reportDAL.Create(model); return(create); } catch { return(false); } }