示例#1
0
        public static CropTypeMasterCollection GetByName(string CROPS_TYPE)
        {
            CropTypeMasterCollection obj = new CropTypeMasterCollection();

            obj.MapObjects(new CropTypeMasterDataService().CropTypeMaster_GetByName(CROPS_TYPE));
            return(obj);
        }
示例#2
0
        public static CropTypeMasterCollection GetAllById(int CROPS_TYPE_ID)
        {
            CropTypeMasterCollection obj = new CropTypeMasterCollection();

            obj.MapObjects(new CropTypeMasterDataService().CropTypeMaster_GetById(CROPS_TYPE_ID));
            return(obj);
        }
示例#3
0
        public static CropTypeMasterCollection GetAll()
        {
            CropTypeMasterCollection obj = new CropTypeMasterCollection();

            obj.MapObjects(new CropTypeMasterDataService().CropTypeMaster_GetAll());
            return(obj);
        }