コード例 #1
0
        public static FreightMasterCollection GetAllByFreightDate(DateTime DATE)
        {
            FreightMasterCollection obj = new FreightMasterCollection();

            obj.MapObjects(new FreightMasterDataService().FreightMaster_GetByFreightDate(DATE));
            return(obj);
        }
コード例 #2
0
        public static FreightMasterCollection GetByName(string FREIGHT)
        {
            FreightMasterCollection obj = new FreightMasterCollection();

            obj.MapObjects(new FreightMasterDataService().FreightMaster_GetByFreight(FREIGHT));
            return(obj);
        }
コード例 #3
0
        public static FreightMasterCollection GetAllById(int FREIGHT_ID)
        {
            FreightMasterCollection obj = new FreightMasterCollection();

            obj.MapObjects(new FreightMasterDataService().FreightMaster_GetById(FREIGHT_ID));
            return(obj);
        }
コード例 #4
0
        public static FreightMasterCollection GetAll()
        {
            FreightMasterCollection obj = new FreightMasterCollection();

            obj.MapObjects(new FreightMasterDataService().FreightMaster_GetAll());
            return(obj);
        }