public void NUnit_WorkDay_Domain_Edit()
 {
     Att_WorkDayServices service = new Att_WorkDayServices();
     var model = new Att_WorkDay
     {
         Id = 5,
         ProfileID = 1
     };
     string result = service.Edit(model);
     if (result != string.Empty)
     {
         Console.WriteLine("Process Success >>> Update >>> " + model.Id
                 + " | " + model.ProfileID
                 + " | " + model.WorkDate
                 );
     }
 }