// -------------------------------------------

        /*
         * CheckValidationUser
         */
        public static void CreateNewRequestDress(string _idUser, string _password, RequestModel _requestDress)
        {
            CommController.Instance.Request(EVENT_COMM_CREATE_REQUEST_NEW_JOB, true, _idUser, _password,
                                            _requestDress.Id.ToString(),
                                            _requestDress.Customer.ToString(),
                                            _requestDress.Provider.ToString(),
                                            _requestDress.Title,
                                            _requestDress.Description,
                                            _requestDress.Images.ToString(),
                                            _requestDress.Referenceimg.ToString(),
                                            _requestDress.Village,
                                            _requestDress.Mapdata,
                                            _requestDress.Latitude.ToString(),
                                            _requestDress.Longitude.ToString(),
                                            _requestDress.Price.ToString(),
                                            _requestDress.Currency,
                                            _requestDress.Distance.ToString(),
                                            _requestDress.GetFlags(),
                                            _requestDress.Notifications.ToString(),
                                            _requestDress.Creationdate.ToString(),
                                            _requestDress.Deadline.ToString(),
                                            _requestDress.FeedbackCustomerGivesToTheProvider,
                                            _requestDress.ScoreCustomerGivesToTheProvider.ToString(),
                                            _requestDress.FeedbackProviderGivesToTheCustomer,
                                            _requestDress.ScoreProviderGivesToTheCustomer.ToString()
                                            );
        }