public bool CreateJob(CarWashDomainModel carWash)
 {
     try
     {
         //this can be extendted to Db layer and based on Db response this will chagned dynamically later part
         return(true);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
        private void MockValues()
        {
            signature = new CarWashClientModel()
            {
                IsPreSoak    = true,
                IsSoftWater  = true,
                IsDryAgent   = true,
                IsTyreShine  = true,
                IsRainShield = true,
                WashMode     = WashMode.Signature,
                TotCost      = 9,
            };

            express = new CarWashDomainModel()
            {
                IsPreSoak    = true,
                IsSoftWater  = true,
                IsDryAgent   = true,
                IsTyreShine  = false,
                IsRainShield = false,
                WashMode     = WashMode.Express,
                TotCost      = 3,
            };
        }