public OperationResult GetTripsHistory(int id)
        {
            OperationResult or;

            try
            {
                or = new TripBL().GetTripsHistory(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(or);
        }
        public OperationResult GetDriverTripsDetail(int id)
        {
            OperationResult or;

            try
            {
                or = new TripBL().GetDriverTripDetail(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(or);
        }
Beispiel #3
0
        public OperationResult GetSetting()
        {
            OperationResult or;

            try
            {
                or = new TripBL().GetSetting();
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(or);
        }