public static PaymentMasterCollection GetByPaymemt_ID(int Paymemt_ID)
        {
            PaymentMasterCollection obj = new PaymentMasterCollection();

            obj.MapObjects(new PaymentMasterDataSevice().PaymentMasterGetByPaymemt_ID(Paymemt_ID));
            return(obj);
        }
        public static PaymentMasterCollection GetAll()
        {
            PaymentMasterCollection obj = new PaymentMasterCollection();

            obj.MapObjects(new PaymentMasterDataSevice().PaymentMasterGetAll());
            return(obj);
        }