Exemple #1
0
        internal static MapBook Get(int groupId, string mapBookName)
        {
            MapBook mapbook = new MapBook();

            mapbook = CoriaDataService.GetMapBookByGroupId_Name(groupId, mapBookName, null);
            return(mapbook);
        }
Exemple #2
0
        public static IApplication Get(Guid mapBookGuId)
        {
            try
            {
                MapBook mapbook = new MapBook(InternalApi.CoriaDataService.GetCoriaMapBookApplication(mapBookGuId));

                return(mapbook);
            }
            catch (Exception ex)
            {
                var exception = ex;
                return(null);
            }
        }
Exemple #3
0
        public static MapBook GetMapBook(int id)
        {
            try
            {
                MapBook mapbook = new MapBook(InternalApi.CoriaDataService.GetCoriaMapBookApplication(id));

                return(mapbook);
            }
            catch (Exception ex)
            {
                var exception = ex;
                return(null);//throw ex;//new InternalApi.Utility.CoriaException("Coria", ex.Message);
            }
        }
Exemple #4
0
        public static IApplication Get(int id)
        {
            try
            {
                MapBook mapbook = new MapBook(InternalApi.CoriaDataService.GetCoriaMapBookApplication(id));

                return(mapbook);
            }
            catch (Exception ex)
            {
                var exception = ex;
                throw null;
            }
        }