public Result <IList <Scheme> > GetAll(int amcId) { var result = new Result <IList <Scheme> >(); SchemeService SchemeService = new SchemeService(); result.Value = SchemeService.GetAll(amcId); result.IsSuccess = true; return(result); }