コード例 #1
0
        public async Task <Tuple <bool, string, List <SchoolModel> > > GetSchool()
        {
            Tuple <bool, string, List <SchoolModel> > result = null;

            try
            {
                result = await _srepo.GetSchool();
            }
            catch (Exception ex)
            {
                ErrorLog.Write(ex);
            }

            return(result);
        }