public bool AddCustomerPayment([FromBody] APIEmpIdModel <CustomerPayments> value)
 {
     try
     {
         return(db.AddCustomerPayment(value));
     }
     catch (Exception)
     {
         throw;
     }
 }