예제 #1
0
        public static Common.Route Load(Guid routeGuid)
        {
            Common.Route   route           = new Common.Route();
            Business.Route routeController = new Business.Route();

            routeController.Load(routeGuid, route);
            return(route);
        }
예제 #2
0
 public static bool Update(Common.Route route)
 {
     Business.Route routeController = new Business.Route();
     return(routeController.Update(route));
 }
예제 #3
0
 public static bool Insert(Common.Route route)
 {
     Business.Route routeController = new Business.Route();
     return(routeController.Insert(route) != Guid.Empty ? true : false);
 }
예제 #4
0
 public static DataTable GetPagedRoutes(Guid agentGuid)
 {
     Business.Route routeController = new Business.Route();
     return(routeController.GetPagedRoutes(agentGuid));
 }