Thursday, September 26, 2024

Clean Code ๐—–๐—น๐—ฒ๐—ฎ๐—ป ๐—–๐—ผ๐—ฑ๐—ฒ ๐—ง๐—ถ๐—ฝs - ๐—ข๐˜ƒ๐—ฒ๐—ฟ๐—ฐ๐—ผ๐—บ๐—ถ๐—ป๐—ด ๐—•๐—ผ๐—ผ๐—น๐—ฒ๐—ฎ๐—ป ๐—•๐—น๐—ถ๐—ป๐—ฑ๐—ป๐—ฒ๐˜€๐˜€

 public void ProcessOrder(int orderId, bool applyDiscount)

{

    if(applyDiscount)

    {

            //Apply Discount to the order

    }

        // Process the order here

}

ProcessOrder(1000, applyDiscount: true);


Clean Code:

public enum DiscountOption

{

    None,

    ApplyDiscount

}


public void ProcessOrder( int orderId, DiscountOption discountOption)

{

    if(discountOption == DiscountOption.ApplyDiscount)

        {

                // Apply discount to the order

        }

// Process the order

}

ProcessOrder(1000, DiscountOption.ApplyDiscount);

No comments:

Post a Comment

Screen Record

 Windows Screen Record WindowsKey+ Alt + R Recording Starts.