public Result <IList <Forms> > GetAll()
        {
            var          result       = new Result <IList <Forms> >();
            FormsService formsService = new FormsService();

            result.Value     = formsService.GetAll();
            result.IsSuccess = true;
            return(result);
        }