public async Task CreateMultipleDoctorsMongo(IEnumerable <UsersResource> patientResources)
        {
            var patients = _mapper.Map <IEnumerable <UsersResource>, IEnumerable <Users> >(patientResources);

            _patientService.AddRangeAsyncMongo(patients);
        }