public static CropRateListMaster GetByRate(string CROP_NAME, int HOtel_ID, string MONTH)
        {
            CropRateListMaster obj = new CropRateListMaster();

            obj.MapData(new CropRateListDataService().CropRateList_GetByrate(CROP_NAME, HOtel_ID, MONTH));
            return(obj);
        }
        public static CropRateListMaster GetByMonthName(string MONTH)
        {
            CropRateListMaster obj = new CropRateListMaster();

            obj.MapData(new CropRateListDataService().CropRateList_GetByMonthName(MONTH));
            return(obj);
        }
        public static CropRateListMaster GetById(int CROPRate_ID)
        {
            CropRateListMaster obj = new CropRateListMaster();

            obj.MapData(new CropRateListDataService().CropRateList_GetById(CROPRate_ID));
            return(obj);
        }